|
Last change
on this file since 2597 was
2589,
checked in by broder, 16 years ago
|
|
Switch to using std-init in invirt-dev.
|
-
Property svn:executable set to
*
|
|
File size:
775 bytes
|
| Line | |
|---|
| 1 | #!/bin/bash |
|---|
| 2 | ### BEGIN INIT INFO |
|---|
| 3 | # Provides: invirt-dev |
|---|
| 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: Invirt development configuration |
|---|
| 9 | # Description: |
|---|
| 10 | ### END INIT INFO |
|---|
| 11 | |
|---|
| 12 | # Author: Invirt project <invirt@mit.edu> |
|---|
| 13 | |
|---|
| 14 | # Do NOT "set -e" |
|---|
| 15 | |
|---|
| 16 | NAME=invirt-dev |
|---|
| 17 | GEN_FILES=/srv/repository/conf/distributions |
|---|
| 18 | |
|---|
| 19 | . /lib/init/std-init.sh |
|---|
| 20 | . /lib/init/gen-files.sh |
|---|
| 21 | |
|---|
| 22 | do_start() |
|---|
| 23 | { |
|---|
| 24 | # Return |
|---|
| 25 | # 0 if daemon has been started |
|---|
| 26 | # 1 if daemon was already running |
|---|
| 27 | # 2 if daemon could not be started |
|---|
| 28 | ret=0 |
|---|
| 29 | gen_files || ret=2 |
|---|
| 30 | reprepro-env export || ret=2 |
|---|
| 31 | invirt-build-conf || ret=2 |
|---|
| 32 | |
|---|
| 33 | return $ret |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | do_stop() |
|---|
| 37 | { |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | do_reload() |
|---|
| 41 | { |
|---|
| 42 | do_start |
|---|
| 43 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.