Wire-Py/start_wg.py

10 lines
230 B
Python
Raw Normal View History

2024-09-07 23:52:16 +02:00
#!/usr/bin/python3
from subprocess import check_call
path_to_file = '/home/punix/.config/wire_py/wg_py'
with open(path_to_file, 'r') as file:
*_, line = file
a_con = line[5:]
2024-09-07 23:52:16 +02:00
check_call(['nmcli', 'connection', 'up', a_con])