e88b6e38be
Those interfaces are configured by qubes scripts (based on xenstore data filled by qubes core).
19 lines
672 B
Bash
Executable File
19 lines
672 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NM_CONFIG_DIR=/etc/NetworkManager/system-connections
|
|
if [ -d $NM_CONFIG_DIR -a ! -h $NM_CONFIG_DIR ]; then
|
|
mkdir -p /rw/config/NM-system-connections
|
|
mv $NM_CONFIG_DIR/* /rw/config/NM-system-connections/ 2> /dev/null || true
|
|
rmdir $NM_CONFIG_DIR
|
|
ln -s /rw/config/NM-system-connections $NM_CONFIG_DIR
|
|
fi
|
|
|
|
# Do not manage xen-provided network devices
|
|
unmanaged_devices=mac:fe:ff:ff:ff:ff:ff
|
|
for mac in `xenstore-ls device/vif | grep mac | cut -d= -f2 | tr -d '" '`; do
|
|
unmanaged_devices="$unmanaged_devices;mac:$mac"
|
|
done
|
|
sed -i -e "s/^unmanaged-devices=.*/unmanaged-devices=$unmanaged_devices/" /etc/NetworkManager/NetworkManager.conf
|
|
|
|
exit 0
|