source: trunk/pxeconfig/CHECKINSTALL/postinstall-pak @ 34

Last change on this file since 34 was 34, checked in by bas, 20 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
RevLine 
[34]1#!/bin/sh
2
3update-inetd --add "pxeconfigd\tstream\ttcp\tnowait\troot.sys\t/usr/sbin/tcpd\t/usr/sbin/pxeconfigd"
4
5
6PXE_TEST=`grep pxeconfigd /etc/services`
7
8if [ "$PXE_TEST" ]; then
9  echo "WARNING: pxeconfigd already in /etc/services"
10else
11  echo -e "pxeconfigd\t10000/tcp\t\t\t# pxe config daemon\n" >> /etc/services
12  /etc/init.d/inetd reload
13fi
14
15
Note: See TracBrowser for help on using the repository browser.