diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-02-20 04:01:56 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-02-20 04:01:56 +0000 |
commit | 77e3a1a8b024bcec7a40f1c17e44a32a573a2600 (patch) | |
tree | 91e2c10db305c6b5115ebff221b2d76f1cbd2d10 | |
parent | c1fd61c0b7fedd0198d951c7e4466fd0566100f2 (diff) | |
download | pfsense-packages-77e3a1a8b024bcec7a40f1c17e44a32a573a2600.tar.gz pfsense-packages-77e3a1a8b024bcec7a40f1c17e44a32a573a2600.tar.bz2 pfsense-packages-77e3a1a8b024bcec7a40f1c17e44a32a573a2600.zip |
Do not exit if user has not configured the interface
-rw-r--r-- | packages/bandwidthd/bandwidthd.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/bandwidthd/bandwidthd.inc b/packages/bandwidthd/bandwidthd.inc index d5a2efd7..6ac5fc52 100644 --- a/packages/bandwidthd/bandwidthd.inc +++ b/packages/bandwidthd/bandwidthd.inc @@ -75,9 +75,8 @@ function bandwidthd_install_config() { $ifdescrs = array($config['installedpackages']['bandwidthd']['config'][0]['active_interface']); } else { log_error("You should specify a interface for bandwidthd to listen on. exiting."); - exit; } - + /* initialize to "" */ $subnets = ""; //$ifdescrs = array("lan", "wan"); |