7 lines
96 B
Bash
7 lines
96 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ -e /etc/resolv.conf ]; then
|
||
|
|
sudo rm /etc/resolv.conf
|
||
|
|
fi
|
||
|
|
install_service "iwd"
|