diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-07 21:28:04 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-07 23:23:53 +0100 |
commit | e8a1c291b1d4b90709a68038e16522b4cee82904 (patch) | |
tree | 46c948c322af6107393609be64f53fa8ff3dbeb2 /python | |
parent | dcdc4f3ea27f1a26f8baa6b72b51c7911f21e6ba (diff) | |
download | vyos-1x-e8a1c291b1d4b90709a68038e16522b4cee82904.tar.gz vyos-1x-e8a1c291b1d4b90709a68038e16522b4cee82904.zip |
login: radius: T3192: migrate to get_config_dict()
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py index 494c8155e..699f05892 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -311,7 +311,7 @@ def chmod_755(path): def makedir(path, user=None, group=None): if os.path.exists(path): return - os.mkdir(path) + os.makedirs(path, mode=0o755) chown(path, user, group) |