This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Locale, country and keyboard settings | |
d-i debian-installer/framebuffer boolean false | |
d-i debian-installer/locale string en_US | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/modelcode string pc105 | |
d-i console-setup/variant USA | |
d-i console-setup/layout USA | |
d-i console-setup/layoutcode string us |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BRIDGE=br-test | |
VLAN_IF=eth1.53 | |
# remove ports from bridge | |
brctl delif $BRIDGE $VLAN_IF | |
brctl delif $BRIDGE br-tap1 | |
brctl delif $BRIDGE br-tap2 | |
ifconfig $BRIDGE down | |
brctl delbr $BRIDGE |