diff options
author | Simon <965089+sarthurdev@users.noreply.github.com> | 2024-11-29 15:47:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-29 15:47:53 +0100 |
commit | 645d627254c5dcccdc72ee3502d7717a1df35bfc (patch) | |
tree | 53a3bf57c3b2fe1ee790912caf8419c4da032740 /src/init/vyos-router | |
parent | 56fb46f392187434a7ccf7504d2e1d1bf46c8377 (diff) | |
parent | 0358f6c660e6130b94ca8c53ec7b34d796605dd8 (diff) | |
download | vyos-1x-645d627254c5dcccdc72ee3502d7717a1df35bfc.tar.gz vyos-1x-645d627254c5dcccdc72ee3502d7717a1df35bfc.zip |
Merge pull request #4204 from sarthurdev/T6809
Diffstat (limited to 'src/init/vyos-router')
-rwxr-xr-x | src/init/vyos-router | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/init/vyos-router b/src/init/vyos-router index 8825cc16a..f8cc87507 100755 --- a/src/init/vyos-router +++ b/src/init/vyos-router @@ -471,6 +471,12 @@ start () touch /tmp/vyos.smoketest.debug fi + # Cleanup PKI CAs + if [ -d /usr/local/share/ca-certificates/vyos ]; then + rm -f /usr/local/share/ca-certificates/vyos/*.crt + update-ca-certificates >/dev/null 2>&1 + fi + log_action_begin_msg "Mounting VyOS Config" # ensure the vyatta_configdir supports a large number of inodes since # the config hierarchy is often inode-bound (instead of size). |