You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
410 B
19 lines
410 B
#!/bin/bash |
|
|
|
. $dracutfunctions |
|
|
|
for program in ip arping; do |
|
which $program >/dev/null 2>&1 |
|
if [ $? -ne 0 ]; then |
|
dwarning "Could not find program \"$program\" required by network." |
|
exit 1 |
|
fi |
|
done |
|
for program in dhclient brctl; do |
|
which $program >/dev/null 2>&1 |
|
if [ $? -ne 0 ]; then |
|
dwarning "Could not find program \"$program\" it might be required by network." |
|
fi |
|
done |
|
exit 255 |
|
|
|
|