weitere korrekturen
This commit is contained in:
parent
e4b04c481b
commit
e45923d544
2
wg_stop
2
wg_stop
@ -15,7 +15,7 @@
|
|||||||
# rm /home/$a_user/.config/wg_nmcli/.tunnel.txt # falls Wireguard nicht richtig funktioniert hier die # wegnehmen
|
# rm /home/$a_user/.config/wg_nmcli/.tunnel.txt # falls Wireguard nicht richtig funktioniert hier die # wegnehmen
|
||||||
# hier wird die Ausgabe von nmcli für die auswertung in die .stop.txt gespeichert
|
# hier wird die Ausgabe von nmcli für die auswertung in die .stop.txt gespeichert
|
||||||
nmcli connection down "$wert" &> "${wg_wdir}.stop.txt"
|
nmcli connection down "$wert" &> "${wg_wdir}.stop.txt"
|
||||||
if disable=$(grep -i '"deaktiviert"\|"disabled"' "${wg_wdir}.stop.txt")
|
if disable=$(grep -i 'deaktiviert\|disabled' "${wg_wdir}.stop.txt")
|
||||||
then
|
then
|
||||||
notify-send --icon="${wg_pic}wg-stop.png" "$wert Connection disconnected."
|
notify-send --icon="${wg_pic}wg-stop.png" "$wert Connection disconnected."
|
||||||
pkill yad
|
pkill yad
|
||||||
|
4
wire_g
4
wire_g
@ -99,7 +99,7 @@ remove(){
|
|||||||
if [ "$?" = "0" ]
|
if [ "$?" = "0" ]
|
||||||
then
|
then
|
||||||
nmcli connection delete "$selection" &> "${wg_wdir}.tmp.txt"
|
nmcli connection delete "$selection" &> "${wg_wdir}.tmp.txt"
|
||||||
success=$(grep -i '"erfolgreich gelöscht"\|"successfully deleted"' "${wg_wdir}.tmp.txt")
|
success=$(grep -i 'erfolgreich gelöscht\|successfully deleted' "${wg_wdir}.tmp.txt")
|
||||||
if [ "$?" = "0" ]
|
if [ "$?" = "0" ]
|
||||||
then
|
then
|
||||||
yad --window-icon="${wg_pic}wg-trash.png" \
|
yad --window-icon="${wg_pic}wg-trash.png" \
|
||||||
@ -172,7 +172,7 @@ export -f more
|
|||||||
|
|
||||||
connect(){
|
connect(){
|
||||||
|
|
||||||
success=$(grep -i '"erfolgreich aktiviert"\|"successfully activated"' "${wg_wdir}.tmp.txt")
|
success=$(grep -i 'erfolgreich aktiviert\|successfully activated' "${wg_wdir}.tmp.txt")
|
||||||
if [ "$?" = "0" ]
|
if [ "$?" = "0" ]
|
||||||
then
|
then
|
||||||
nmcli con mod "$selection" connection.autoconnect no
|
nmcli con mod "$selection" connection.autoconnect no
|
||||||
|
Loading…
Reference in New Issue
Block a user