summaryrefslogtreecommitdiff
path: root/src/conf_mode/interfaces-wireguard.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-08 22:07:58 +0200
committerChristian Poessinger <christian@poessinger.com>2020-04-08 22:08:57 +0200
commit12a67646986e89d94d1e41d410c7314488aa1cbe (patch)
treeb06662806a977ef9dac00bb7970727ebc20d75c1 /src/conf_mode/interfaces-wireguard.py
parent2d33cf656f5856fb06e8390fc2250bb99ea0206b (diff)
downloadvyos-1x-12a67646986e89d94d1e41d410c7314488aa1cbe.tar.gz
vyos-1x-12a67646986e89d94d1e41d410c7314488aa1cbe.zip
vyos-util: rename chown_file() > chown()
... to make it clear also directories can be chown(-ed)
Diffstat (limited to 'src/conf_mode/interfaces-wireguard.py')
-rwxr-xr-xsrc/conf_mode/interfaces-wireguard.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/conf_mode/interfaces-wireguard.py b/src/conf_mode/interfaces-wireguard.py
index 585045863..4ff9f1395 100755
--- a/src/conf_mode/interfaces-wireguard.py
+++ b/src/conf_mode/interfaces-wireguard.py
@@ -24,7 +24,7 @@ from netifaces import interfaces
from vyos.config import Config
from vyos.configdict import list_diff
from vyos.ifconfig import WireGuardIf
-from vyos.util import run, is_bridge_member
+from vyos.util import chown, run, is_bridge_member
from vyos import ConfigError
kdir = r'/config/auth/wireguard'
@@ -55,14 +55,15 @@ def _check_kmod():
def _migrate_default_keys():
if os.path.exists(f'{kdir}/private.key') and not os.path.exists(f'{kdir}/default/private.key'):
- old_umask = os.umask(0o027)
location = f'{kdir}/default'
- run(f'sudo mkdir -p {location}')
- run(f'sudo chgrp vyattacfg {location}')
+ if not os.path.exists(location):
+ os.makedirs(location)
+
+ chown(location, 'root', 'vyattacfg')
run(f'sudo chmod 750 {location}')
+
os.rename(f'{kdir}/private.key', f'{location}/private.key')
os.rename(f'{kdir}/public.key', f'{location}/public.key')
- os.umask(old_umask)
def get_config():
@@ -293,10 +294,10 @@ def apply(wg):
# preshared-key - needs to be read from a file
if peer['psk']:
psk_file = '/config/auth/wireguard/psk'
- old_umask = os.umask(0o077)
- open(psk_file, 'w').write(str(c['peer'][p]['psk']))
- os.umask(old_umask)
+ with open(psk_file, 'w') as f:
+ f.write(peer['psk']))
w.config['psk'] = psk_file
+
w.update()
# Enable/Disable interface