diff options
author | Bill Nottingham <notting@redhat.com> | 2010-06-04 16:47:12 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2010-06-04 16:47:12 -0400 |
commit | f9c897cf6545660896b31446ce2f743fa621c72d (patch) | |
tree | ce7df6832c3dd7c35f7736218171519ba2e0ddd0 /sysconfig/network-scripts | |
parent | c305870fe4043a8aad7d8456a643422b7fe61593 (diff) | |
download | initscripts-f9c897cf6545660896b31446ce2f743fa621c72d.tar initscripts-f9c897cf6545660896b31446ce2f743fa621c72d.tar.gz initscripts-f9c897cf6545660896b31446ce2f743fa621c72d.tar.bz2 initscripts-f9c897cf6545660896b31446ce2f743fa621c72d.tar.xz initscripts-f9c897cf6545660896b31446ce2f743fa621c72d.zip |
Remove 'BOOTP' config option. It was considered 'old' in 1997. (Seriously.)
Diffstat (limited to 'sysconfig/network-scripts')
-rwxr-xr-x | sysconfig/network-scripts/ifup | 5 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-eth | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index d7bd6721..27469e19 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -124,11 +124,6 @@ if [ "${VLAN}" = "yes" ] && [ "$ISALIAS" = "no" ]; then fi fi -# Old BOOTP variable -if [ "${BOOTP}" = "yes" ]; then - BOOTPROTO=bootp -fi - if [ "${BOOTPROTO}" = "bootp" -o "${BOOTPROTO}" = "dhcp" ]; then DYNCONFIG=true fi diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth index 9e5e4b12..0fc8340b 100755 --- a/sysconfig/network-scripts/ifup-eth +++ b/sysconfig/network-scripts/ifup-eth @@ -28,11 +28,6 @@ need_config "${CONFIG}" source_config -# Old BOOTP variable -if [ "${BOOTP}" = "yes" ]; then - BOOTPROTO=bootp -fi - if [ "${BOOTPROTO}" = "bootp" -o "${BOOTPROTO}" = "dhcp" ]; then DYNCONFIG=true fi |