summaryrefslogtreecommitdiff
path: root/sysutils/doinkd
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-08-17 16:19:41 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-08-17 16:19:41 +0000
commit4a056d796f00575f78108f467ab088b4d3c4c0b5 (patch)
treeb060024371d5187e2b22643e048517dd69f64b53 /sysutils/doinkd
parentUpgrade to 1.1.5 (diff)
Simplification of idled.sh
PR: 28693 Submitted by: James Howard <howardjp@well.com>
Notes
Notes: svn path=/head/; revision=46379
Diffstat (limited to 'sysutils/doinkd')
-rw-r--r--sysutils/doinkd/files/idled.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/sysutils/doinkd/files/idled.sh b/sysutils/doinkd/files/idled.sh
index 880e47162941..35c75289f80a 100644
--- a/sysutils/doinkd/files/idled.sh
+++ b/sysutils/doinkd/files/idled.sh
@@ -1,9 +1,5 @@
#!/bin/sh
case "$1" in
- start)
- /usr/local/libexec/idled
- echo -n ' idled'
- ;;
stop)
killall -TERM idled
echo "idled stopped"
@@ -16,7 +12,7 @@ case "$1" in
-h)
echo "Usage: `basename $0` { start | stop | restart }"
;;
- *)
+ *) # includes start
/usr/local/libexec/idled
echo -n ' idled'
;;