diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-11-13 22:10:58 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-11-13 22:10:58 +0000 |
commit | 6ce3b4ec13c701ddb88ced66791809e218ef6cbb (patch) | |
tree | 81d594c4443c17acb99870ff51a0d172ac2d2967 /sbin/dhclient-script | |
parent | c3fe3ad87e02be92755b0ace2dfe243df1d17522 (diff) | |
download | pfsense-6ce3b4ec13c701ddb88ced66791809e218ef6cbb.zip pfsense-6ce3b4ec13c701ddb88ced66791809e218ef6cbb.tar.gz |
Pass interface correctly to rc.newwanip
Diffstat (limited to 'sbin/dhclient-script')
-rwxr-xr-x | sbin/dhclient-script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/dhclient-script b/sbin/dhclient-script index 8ca9a62..9af502d 100755 --- a/sbin/dhclient-script +++ b/sbin/dhclient-script @@ -176,7 +176,7 @@ add_new_resolv_conf() { # Must be used on exit. Invokes the local dhcp client exit hooks, if any. exit_with_hooks() { - /etc/rc.newwanip {$interface} + /etc/rc.newwanip $interface # probably should do something with exit status of the local script exit 0 } |