Last change
on this file since 35 was
34,
checked in by bas, 19 years ago
|
CHECKINSTALL:
- Added files for package generation with checkinstall
install.sh:
- script for pxe installation used for checkinstall
|
-
Property svn:executable set to
*
|
File size:
350 bytes
|
Rev | Line | |
---|
[34] | 1 | #!/bin/sh |
---|
| 2 | |
---|
| 3 | update-inetd --add "pxeconfigd\tstream\ttcp\tnowait\troot.sys\t/usr/sbin/tcpd\t/usr/sbin/pxeconfigd" |
---|
| 4 | |
---|
| 5 | |
---|
| 6 | PXE_TEST=`grep pxeconfigd /etc/services` |
---|
| 7 | |
---|
| 8 | if [ "$PXE_TEST" ]; then |
---|
| 9 | echo "WARNING: pxeconfigd already in /etc/services" |
---|
| 10 | else |
---|
| 11 | echo -e "pxeconfigd\t10000/tcp\t\t\t# pxe config daemon\n" >> /etc/services |
---|
| 12 | /etc/init.d/inetd reload |
---|
| 13 | fi |
---|
| 14 | |
---|
| 15 | |
---|
Note: See
TracBrowser
for help on using the repository browser.