mirror of
https://github.com/dracutdevs/dracut.git
synced 2024-10-29 03:25:33 +03:00
8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in /tmp/dhclient.*.pid; do
|
|
[ -e $f ] || continue
|
|
read PID < $f;
|
|
kill $PID;
|
|
done
|