blob: 4726a28e44b13046bb33db17e6207122d5f9159e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
|