13 lines
262 B
Python
Executable File
13 lines
262 B
Python
Executable File
#!/usr/bin/python3
|
|
from subprocess import check_call
|
|
from pathlib import Path
|
|
|
|
path_to_file = Path('/etc/wire_py/wg_py')
|
|
|
|
if Path.exists(path_to_file):
|
|
a_con = Path.read_text(path_to_file)
|
|
check_call(['nmcli', 'connection', 'up', a_con])
|
|
else:
|
|
pass
|
|
|