1
0
mirror of https://github.com/byReqz/netset.git synced 2025-07-16 05:02:40 +00:00

added install check at start

This commit is contained in:
Nils
2021-02-18 20:08:13 +01:00
parent fc7ed1b7bd
commit 2c1be99375

View File

@@ -2,7 +2,16 @@
# license: gpl-3 # license: gpl-3
echo "which networkmanager do you want to use?" echo "which networkmanager do you want to use?"
echo "please enter the name or number of your choice" echo "please enter the name or number of your choice"
echo "1. systemd-resolved" if [[ -n $(systemctl --version | grep -e "systemd") ]];then
echo "1. systemd-resolved [installed]"
else
echo "1. systemd-resolved [not installed]"
fi
if [[ -n $(NetworkManager -h | grep -e "Usage:") ]];then
echo "2. NetworkManager [installed]"
else
echo "2. NetworkManager [not installed]"
fi
read $c1 read $c1
if [[ "$c1" == "1" ]] || [[ "$c1" == "1." ]] || [[ "$c1" == "systemd-resolved" ]];then if [[ "$c1" == "1" ]] || [[ "$c1" == "1." ]] || [[ "$c1" == "systemd-resolved" ]];then
if [[ -z $(sudo systemctl status systemd-networkd | grep -e "dead") ]];then if [[ -z $(sudo systemctl status systemd-networkd | grep -e "dead") ]];then