diff options
Diffstat (limited to 'system/profile-sync-daemon/rc.psd')
-rw-r--r-- | system/profile-sync-daemon/rc.psd | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/system/profile-sync-daemon/rc.psd b/system/profile-sync-daemon/rc.psd new file mode 100644 index 0000000000..4726a28e44 --- /dev/null +++ b/system/profile-sync-daemon/rc.psd @@ -0,0 +1,47 @@ +#!/bin/sh +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# Adapted by Marcel Saegebarth for slackbuilds.org for +# http://slackbuilds.org/result/?search=profile-sync-daemon. + +description="Webbrowser profile syncing" +extra_commands="resync" +description_resync="Manually sync the disk profile with running tmpfs image" + +start() { + echo "Starting Profile-Sync-Daemon" + /usr/bin/profile-sync-daemon sync +} + +stop() { + echo "Stopping Profile-Sync-Daemon" + /usr/bin/profile-sync-daemon unsync +} + +status() { + /usr/bin/profile-sync-daemon debug +} + +resync() { + echo "Syncing browser profiles in tmpfs to physical disc" + /usr/bin/profile-sync-daemon resync +} + +case "$1" in + start) + start + ;; + stop) + stop + ;; + resync) + resync + ;; + + status) + status + ;; + *) + echo $"Usage: $0 {start|stop|resync|status}" + exit 1 +esac |