diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-04-21 17:36:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-04-21 17:36:04 +0000 |
commit | 07064c0978b78356bf74408c216f524881df3362 (patch) | |
tree | d245a8d3ae74ffbf9beefa6eab00c163dfe82674 /package/dhcp/init-relay | |
parent | 74ad4e12c8182e70ec0eed7e029f6d70163a6a01 (diff) | |
download | buildroot-novena-07064c0978b78356bf74408c216f524881df3362.tar.gz buildroot-novena-07064c0978b78356bf74408c216f524881df3362.zip |
Update init scripts a bit. Don't mess with /etc/default for now.
Diffstat (limited to 'package/dhcp/init-relay')
-rwxr-xr-x | package/dhcp/init-relay | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/package/dhcp/init-relay b/package/dhcp/init-relay index 019a7e84c..c870ea7f5 100755 --- a/package/dhcp/init-relay +++ b/package/dhcp/init-relay @@ -3,16 +3,25 @@ # $Id: dhcp3-relay,v 1.1 2004/04/16 15:41:08 ml Exp $ # + +# What servers should the DHCP relay forward requests to? +# e.g: SERVERS="192.168.0.1" +SERVERS="" + +# On what interfaces should the DHCP relay (dhrelay) serve DHCP requests? +INTERFACES="" + +# Additional options that are passed to the DHCP relay daemon? +OPTIONS="" + + + + # It is not safe to start if we don't have a default configuration... -if [ ! -f /etc/default/dhcp-relay ]; then - echo "/etc/default/dhcp-relay does not exist! - Aborting..." - echo "create this file to fix the problem." - exit 1 -fi +echo "/etc/init.d/dhcp-relay not yet configured! - Aborting..." +exit 1; + -# Read init script configuration (interfaces the daemon should listen on -# and the DHCP server we should forward requests to.) -. /etc/default/dhcp-relay # Build command line for interfaces (will be passed to dhrelay below.) IFCMD="" |