Wire-Py/start_wg.py

15 lines
332 B
Python
Raw Permalink Normal View History

2024-09-07 23:52:16 +02:00
#!/usr/bin/python3
from subprocess import check_call
from pathlib import Path
2024-09-07 23:52:16 +02:00
path_to_file = Path('/etc/wire_py/settings.conf')
with open(path_to_file, 'r') as a_con:
lines = a_con.readlines()
a_con = lines[7].strip()
if a_con != 'off':
check_call(['nmcli', 'connection', 'up', a_con])
else:
pass