pmaports/device/device-lenovo-karate/device-lenovo-karate.post-install

17 lines
349 B
Text
Raw Normal View History

2017-11-29 21:16:02 +00:00
#!/bin/sh
# Enable networking service (requires /etc/interfaces, which is configured below)
rc-update add networking default
# Create /etc/network/interfaces if this doesn't exist
if [ ! -f /etc/network/interfaces ]; then
cat << EOF >> /etc/network/interfaces
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet dhcp
EOF
fi
exit 0