CRUX-ARM :
Home
Home
::
Documentation
::
Download
::
Development
::
Community
::
Ports
::
Packages
::
Bugs
::
Links
::
About
::
Donors
development
/
crossrootfs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
e2fsprogs: updated to 1.42.13 and updated mandir
[crossrootfs.git]
/
inetutils
/
inetd
1
#!/bin/sh
2
#
3
# /etc/rc.d/inetd: start/stop inet daemon
4
#
5
6
case
$1
in
7
start
)
8
/
usr
/
sbin
/
inetd
9
;;
10
stop
)
11
killall
-q
/
usr
/
sbin
/
inetd
12
;;
13
restart
)
14
$0
stop
15
sleep
2
16
$0
start
17
;;
18
*)
19
echo
"usage:
$0
[start|stop|restart]"
20
;;
21
esac
22
23
# End of file