blob: ec087304ac0203d13a8cf726e41da74638816dfc (
plain)
1
2
3
4
5
6
|
#!/bin/sh
if [ -f /etc/iwd/main.conf ]; then
sed -i -e s/enable_network_config=True/EnableNetworkConfiguration=True/ /etc/iwd/main.conf
sed -i -e s/resolve_method=resolvconf/NameResolvingService=resolvconf/ /etc/iwd/main.conf
fi
|