.. | |||||
dhclient-script.sh | |||||
dhclient.conf | |||||
ifup.sh | |||||
kill-dhclient.sh | |||||
module-setup.sh | |||||
net-genrules.sh | |||||
parse-bond.sh | |||||
parse-bridge.sh | |||||
parse-ibft.sh | |||||
parse-ifname.sh | |||||
parse-ip-opts.sh | |||||
parse-team.sh | |||||
parse-vlan.sh |
#!/bin/sh for f in /tmp/dhclient.*.pid; do [ -e $f ] || continue read PID < $f; kill $PID >/dev/null 2>&1 done sleep 0.1 for f in /tmp/dhclient.*.pid; do [ -e $f ] || continue read PID < $f; kill -9 $PID >/dev/null 2>&1 done
.. | |||||
dhclient-script.sh | |||||
dhclient.conf | |||||
ifup.sh | |||||
kill-dhclient.sh | |||||
module-setup.sh | |||||
net-genrules.sh | |||||
parse-bond.sh | |||||
parse-bridge.sh | |||||
parse-ibft.sh | |||||
parse-ifname.sh | |||||
parse-ip-opts.sh | |||||
parse-team.sh | |||||
parse-vlan.sh |