blob: c94d9784096e2851a7f197291af6b8585298d426 (
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
48
49
50
51
52
53
54
55
|
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Daemon script for pglinux"
extra_commands="reload forcereload update"
depend() {
need net
}
PIDFILE=@PID_DIR@/pgld.pid
PGLCMD=@PGLCMDPATH@
start() {
ebegin "Starting pglinux daemon"
if [ "${RC_CMD}" = "restart" ]; then
sleep 3
fi
$PGLCMD start
eend $?
}
stop() {
ebegin "Stopping pglinux daemon"
$PGLCMD stop_quick
eend $?
}
status() {
ebegin "Checking status of pglinux daemon"
$PGLCMD status
eend $?
}
reload() {
ebegin "reload config"
$PGLCMD reload
eend $?
}
forcereload() {
ebegin "force config reload"
$PGLCMD force-reload
eend $?
}
update() {
ebegin "Force update of lists"
$PGLCMD update
eend $?
}
|