source: trunk/packages/invirt-remote/debian/invirt-remote-host.init @ 2877

Last change on this file since 2877 was 2436, checked in by broder, 15 years ago

In invirt-remote:

  • Instead of running all of the disk-wiping dds simultaneously, run them sequentially using a janitor daemon (LP: #411486).
  • Property svn:executable set to *
File size: 1.2 KB
RevLine 
[875]1#!/bin/bash
[876]2### BEGIN INIT INFO
[1239]3# Provides:          invirt-remote-host
[876]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
[1239]8# Short-Description: remctl configuration for an Invirt host
[876]9# Description:
10### END INIT INFO
[815]11
[1239]12PACKAGE=invirt-remote-host
[815]13
14. /lib/lsb/init-functions
15
16gen_config()
17{
[891]18    for i in /etc/remctl/acl/remote
19    do mako-render $i.mako > $i
20    done
[815]21}
22
[2436]23reload_cfg()
24{
[875]25    log_begin_msg "Reloading config for $PACKAGE"
26    gen_config
27    log_end_msg $?
[1443]28    invoke-rc.d openbsd-inetd start # returns 1 if inetd is running
[2436]29}
30
31case "$1" in
32  start)
33    reload_cfg
34
35    log_begin_msg "Starting the invirt-janitor for $PACKAGE"
36    daemon -n invirt-janitor -r invirt-janitor
37    log_end_msg $?
[875]38    ;;
[2436]39  force-reload|restart)
40    reload_cfg
41
42    log_begin_msg "Restarting the invirt-janitor for $PACKAGE"
43    daemon -n invirt-janitor --restart
44    log_end_msg $?
45    ;;
[815]46  stop)
[2436]47    log_begin_msg "Stopping the invirt-janitor for $PACKAGE"
48    daemon -n invirt-janitor --stop
49    log_end_msg $?
[875]50    ;;
[815]51  *)
[2436]52    log_success_msg "Usage: /etc/init.d/$PACKAGE {start|force-reload|restart|stop}"
[875]53    ;;
[815]54esac
Note: See TracBrowser for help on using the repository browser.