In 1.8.0, there is a bug in /opt/vyatta/sbin/vyatta-bridge.pl line 123. A reference to $ifname should be $port in the system call. Here is the current version:
sub remove_bridge_port { my ($bridge, $port) = @_; return unless $bridge; # not part of a bridge # this is the case where the bridge that this interface is assigned # to is getting deleted in the same commit as the bridge node under # this interface - Bug 5064|4734. Since bridge has a higher priority; # it gets deleted before the removal of bridge-groups under interfaces return unless ( -d "/sys/class/net/$bridge" ); system ("$BRCTL delif $bridge $ifname") == 0 or exit 1; }