Last change
on this file since 1064 was
998,
checked in by price, 16 years ago
|
start inetd in remctl-auto init script
|
-
Property svn:executable set to
*
|
File size:
801 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | ### BEGIN INIT INFO |
---|
3 | # Provides: sipb-xen-remctl-auto |
---|
4 | # Required-Start: $local_fs $remote_fs |
---|
5 | # Required-Stop: $local_fs $remote_fs |
---|
6 | # Default-Start: 2 3 4 5 |
---|
7 | # Default-Stop: 0 1 6 |
---|
8 | # Short-Description: conserver config from invirt config for invirt host |
---|
9 | # Description: |
---|
10 | ### END INIT INFO |
---|
11 | |
---|
12 | PACKAGE=sipb-xen-remctl-auto |
---|
13 | |
---|
14 | . /lib/lsb/init-functions |
---|
15 | |
---|
16 | gen_config() |
---|
17 | { |
---|
18 | for i in /etc/remctl/acl/remote |
---|
19 | do mako-render $i.mako > $i |
---|
20 | done |
---|
21 | } |
---|
22 | |
---|
23 | case "$1" in |
---|
24 | start|reload|force-reload|restart) |
---|
25 | log_begin_msg "Reloading config for $PACKAGE" |
---|
26 | gen_config |
---|
27 | log_end_msg $? |
---|
28 | /etc/init.d/openbsd-inetd start # idempotent, thankfully |
---|
29 | ;; |
---|
30 | stop) |
---|
31 | ;; |
---|
32 | *) |
---|
33 | log_success_msg "Usage: /etc/init.d/$PACKAGE {start|reload|force-reload|restart|stop}" |
---|
34 | ;; |
---|
35 | esac |
---|
Note: See
TracBrowser
for help on using the repository browser.