debianmacno-cupsnodebathenaweb
|
Last change
on this file since c7b9feb was
c7b9feb,
checked in by Jessica B. Hamrick <jhamrick@…>, 16 years ago
|
|
Initial commit
|
-
Property mode set to
100644
|
|
File size:
418 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | case "$1" in |
|---|
| 4 | start) |
|---|
| 5 | mkdir /var/run/sipbmp3 |
|---|
| 6 | touch /var/run/sipbmp3/status |
|---|
| 7 | chmod 0777 /var/run/sipbmp3/status |
|---|
| 8 | ;; |
|---|
| 9 | stop) |
|---|
| 10 | rm -r /var/run/sipbmp3 |
|---|
| 11 | ;; |
|---|
| 12 | restart) |
|---|
| 13 | rm -r /var/run/sipbmp3 |
|---|
| 14 | mkdir /var/run/sipbmp3 |
|---|
| 15 | touch /var/run/sipbmp3/status |
|---|
| 16 | chmod 0777 /var/run/sipbmp3/status |
|---|
| 17 | ;; |
|---|
| 18 | *) |
|---|
| 19 | echo "Usage: /etc/init.d/sipbmp3 {start|stop|restart}" >&2 |
|---|
| 20 | exit 1 |
|---|
| 21 | ;; |
|---|
| 22 | esac |
|---|
Note: See
TracBrowser
for help on using the repository browser.