blob: 106c2b11abfa44656c45d51a4bd1138a20dc4ca7 (
plain) (
blame)
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
56
57
58
59
60
61
62
63
64
65
|
#!/sbin/openrc-run
description="Start/stop the apasted services"
depend()
{
after net
after localmount
}
_get_services()
{
. /etc/conf.d/apasted
list=
if test -n "$APASTED_PORT" ; then
if test -n "$APASTED_IPv4" ; then
list="apasted-4"
fi
if test -n "$APASTED_IPv6" ; then
list="$list apasted-6"
fi
fi
if test -n "$APASTED_TLS_PORT" ; then
if test -n "$APASTED_IPV4" ; then
list="apastesd-4"
fi
if test -n "$APASTED_IPV6" ; then
list="$list apastesd-6"
fi
fi
echo $list
}
stop()
{
ebegin "Stopping the apasted services"
for i in `_get_services` ; do
s6-svunlink /run/service "$i"
done
eend $?
}
start()
{
ebegin "Starting the apasted services"
for i in `_get_services` ; do
s6-svlink -t10000 /run/service "/var/lib/apasted/services/$i"
done
eend $?
}
status()
{
for i in `_get_services` ; do
echo -n "${i}: "
s6-svstat "/run/service/${i}"
done
}
restart()
{
for i in `_get_services` ; do
s6-svc -rwR "/run/service/$i"
done
}
|