diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-13 21:52:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 21:52:26 +0100 |
commit | 0cadf4e24f077b08e7a429b080d4329c3f9c61e0 (patch) | |
tree | f60bda97b98b737a5991e32cdccf016989ca1762 | |
parent | 8976c04b0ec8735b292810b6fb89a762b0a9add0 (diff) | |
parent | ea9708027d8fc84a91831fc29b876fe77c8f8385 (diff) | |
download | vyatta-cfg-0cadf4e24f077b08e7a429b080d4329c3f9c61e0.tar.gz vyatta-cfg-0cadf4e24f077b08e7a429b080d4329c3f9c61e0.zip |
Merge pull request #73 from c-po/equuleus
init: T2044: always start/stop rpki during system boot
-rwxr-xr-x | scripts/init/vyos-router | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/init/vyos-router b/scripts/init/vyos-router index 4c96d41..466b125 100755 --- a/scripts/init/vyos-router +++ b/scripts/init/vyos-router @@ -314,6 +314,10 @@ start () chmod g-w,o-w / run_postconfig_scripts + tmp=$(${vyos_libexec_dir}/read-saved-value.py --path "protocols rpki cache") + if [[ ! -z "$tmp" ]]; then + vtysh -c "rpki start" + fi } stop() |