Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
eb1b638b
Commit
eb1b638b
authored
Jun 25, 2003
by
Robert Ricci
Browse files
Add a new script to start up bind9 from the ports tree.
parent
257713f6
Changes
2
Hide whitespace changes
Inline
Side-by-side
rc.d/1.named.sh
0 → 100755
View file @
eb1b638b
#!/bin/sh
case
"
$1
"
in
start
)
if
[
-x
/usr/local/sbin/named
]
;
then
sleep
1
/usr/local/sbin/named
-c
/etc/namedb/named.conf
fi
;;
stop
)
/usr/bin/killall named
>
/dev/null 2>&1
&&
echo
-n
' named'
;;
*
)
echo
""
echo
"Usage:
`
basename
$0
`
{ start | stop }"
echo
""
exit
64
;;
esac
rc.d/GNUmakefile.in
View file @
eb1b638b
...
...
@@ -8,7 +8,7 @@ SUBDIR = rc.d
include $(OBJDIR)/Makeconf
RC_SCRIPTS = 2.mysql-server.sh 3.testbed.sh 2.elvind.sh
RC_SCRIPTS = 2.mysql-server.sh 3.testbed.sh 2.elvind.sh
1.named.sh
#
# Force dependencies to make sure configure regenerates if the .in file
# is changed.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment