diff options
author | jim-p <jimp@pfsense.org> | 2012-02-07 11:29:28 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-02-07 11:30:12 -0500 |
commit | c7fc14a1b9f17f5c0f55dcdcb9fb383fecbda8c0 (patch) | |
tree | 32611b390ce32e97f86bf4016d57ebe4f2503b8d | |
parent | 8b320242759a783ebecd28dcbd57c1262844cbc4 (diff) | |
download | pfsense-c7fc14a1b9f17f5c0f55dcdcb9fb383fecbda8c0.zip pfsense-c7fc14a1b9f17f5c0f55dcdcb9fb383fecbda8c0.tar.gz |
Since the CARP interface name changed to vip, devd needs to follow that change as well.
-rw-r--r-- | etc/devd.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/devd.conf b/etc/devd.conf index d6731d8..c83ff6d 100644 --- a/etc/devd.conf +++ b/etc/devd.conf @@ -16,14 +16,14 @@ options { notify 100 { match "system" "IFNET"; match "type" "LINK_UP"; - match "subsystem" "carp"; + match "subsystem" "vip"; action "/etc/rc.carpmaster $subsystem"; }; notify 100 { match "system" "IFNET"; match "type" "LINK_DOWN"; - match "subsystem" "carp"; + match "subsystem" "vip"; action "/etc/rc.carpbackup $subsystem"; }; |