From df88860947686a5e6507fc5d60ff33eac1158c6b Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 29 Mar 2022 23:36:22 +0100 Subject: using sysvinit system bootscripts --- xi/services/dhcpcd | 70 ------------------------------------------------------ 1 file changed, 70 deletions(-) delete mode 100755 xi/services/dhcpcd (limited to 'xi/services/dhcpcd') diff --git a/xi/services/dhcpcd b/xi/services/dhcpcd deleted file mode 100755 index 050413c..0000000 --- a/xi/services/dhcpcd +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash -# Begin services/dhcpcd - -# Origianlly dased upon lfs-bootscripts-1.12 $NETWORK_DEVICES/if{down,up} -# Rewritten by Nathan Coulson -# Adapted for dhcpcd by DJ Lucas -# Update for LFS 7.0 by Bruce Dubbs - -# Call with: IFCONFIG= /lib/services/dhcpcd - -#$LastChangedBy: bdubbs $ -#$Date: 2012-04-09 19:48:51 +0000 (Mon, 09 Apr 2012) $ - -#. /lib/lsb/init-functions -. $IFCONFIG - -pidfile="/var/run/dhcpcd-$1.pid" - -case "$2" in - up) - # Cosmetic output not needed for multiple services - #if ! $(echo ${SERVICE} | grep -q " "); then - # log_info_msg2 "\n" # Terminate the previous message - #fi - - echo "Starting dhcpcd on the $1 interface..." - - # Test to see if there is a stale pid file - if [ -f "$pidfile" ]; then - ps `cat "$pidfile"` | grep dhcpcd > /dev/null - - if [ $? != 0 ]; then - rm -f /var/run/dhcpcd-$1.pid > /dev/null - - else - echo "dhcpcd is already running!" - exit 2 - fi - fi - - /sbin/dhcpcd $1 $DHCP_START - #evaluate_retval - ;; - - down) - echo "Stopping dhcpcd on the $1 interface..." - - if [ -z "$DHCP_STOP" ]; then - kill -9 $(cat ${pidfile}) - rm -f ${pidfile} - - else - /sbin/dhcpcd $1 $DHCP_STOP &> /dev/null - - if [ "$?" -eq 1 ]; then - echo "dhcpcd not running!" - exit 2 - fi - fi - - #evaluate_retval - ;; - - *) - echo "Usage: $0 [interface] {up|down}" - exit 1 - ;; -esac - -# End services/dhcpcd -- cgit v1.2.1