diff options
Diffstat (limited to 'sysconfig/network-scripts/ifup')
-rwxr-xr-x | sysconfig/network-scripts/ifup | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index ab1e6f7f..359ef3cb 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -3,6 +3,8 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin cd /etc/sysconfig/network-scripts +. network-functions + CONFIG=$1 [ -z "$CONFIG" ] && { @@ -24,7 +26,7 @@ if [ $UID != 0 ]; then exit 1 fi -. $CONFIG +source_config if [ "foo$2" = "fooboot" -a "${ONBOOT}" = "no" ] then |