#! /bin/sh # Copyright (c) 1996, 1997, 1998 S.u.S.E. GmbH # Copyright (c) 1998, 1999, 2000, 2001 SuSE GmbH # Copyright (c) 2002 SuSE Linux AG # Copyright (c) 2003-2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (C) 2013-2014 SUSE LINUX GmbH, Nuernberg, Germany. # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along with # this program; if not, see . # # Author: Peter Poeml , 2001 # Marius Tomaschewski , 2010 # # /etc/init.d/dhcrelay # and its symbolic link # /usr/sbin/rcdhcrelay # ### BEGIN INIT INFO # Provides: dhcrelay # Required-Start: $network $remote_fs network-remotefs # Should-Start: $named $syslog $time # Required-Stop: $network $remote_fs network-remotefs # Should-Stop: $named $syslog # Default-Start: 3 5 # Default-Stop: 0 1 2 6 # Short-Description: DHCP Relay # Description: Start DHCP (Dynamic Host Configuration Protocol) # relay agent, forwarding DHCP requests from one # physical network segment to another. ### END INIT INFO test -x /usr/lib/dhcp/dhcrelay || exit 5 case $1 in start|stop|try-restart|restart|force-reload|reload|status|probe|*) export SCRIPT=${0##*/} exec /usr/lib/dhcp/dhcrelay -4 "$@" || exit 1 ;; esac