diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-06-24 14:31:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-24 14:31:54 +0100 |
commit | a64de34aa9c3c107dbfc9e17920d483090c70a96 (patch) | |
tree | d3a5a5d274f84c15be5fa5d844896f07a70072fd /python | |
parent | 71ddbe4ceeeba30f6da055123307ad37c5a93f94 (diff) | |
parent | 74941af39dc59c42d8ec6749169ee1c1663b78b7 (diff) | |
download | vyos-1x-a64de34aa9c3c107dbfc9e17920d483090c70a96.tar.gz vyos-1x-a64de34aa9c3c107dbfc9e17920d483090c70a96.zip |
Merge pull request #4573 from c-po/pki-T7574
pki: T7574: add optional force argument to renew certbot-issued certificates
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/defaults.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py index f84b14040..63f3b5358 100644 --- a/python/vyos/defaults.py +++ b/python/vyos/defaults.py @@ -15,10 +15,10 @@ import os -base_dir = '/usr/libexec/vyos/' +base_dir = '/usr/libexec/vyos' directories = { - 'base' : base_dir, + 'base' : f'{base_dir}', 'data' : '/usr/share/vyos/', 'conf_mode' : f'{base_dir}/conf_mode', 'op_mode' : f'{base_dir}/op_mode', |