diff options
author | John Estabrook <jestabro@vyos.io> | 2023-11-16 13:45:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 13:45:43 -0600 |
commit | d4f9d6ce726ea4d4fff6eecc16678d7a45a0b555 (patch) | |
tree | bad8b2fbfd9e325d9e6338bb8abd6608a2537c04 /src/systemd | |
parent | c8ba5dccfa9b02533c6536903ecacd3ddb04351e (diff) | |
parent | e036f783bc85e4d2bad5f5cbfd688a03a352223e (diff) | |
download | vyos-1x-d4f9d6ce726ea4d4fff6eecc16678d7a45a0b555.tar.gz vyos-1x-d4f9d6ce726ea4d4fff6eecc16678d7a45a0b555.zip |
Merge pull request #1768 from zdc/T4516-sagitta
image: T4516: Added system image tools
Diffstat (limited to 'src/systemd')
-rw-r--r-- | src/systemd/vyos-grub-update.service | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/systemd/vyos-grub-update.service b/src/systemd/vyos-grub-update.service new file mode 100644 index 000000000..522b13a33 --- /dev/null +++ b/src/systemd/vyos-grub-update.service @@ -0,0 +1,14 @@ +[Unit] +Description=Update GRUB loader configuration structure +After=local-fs.target +Before=vyos-router.service + +[Service] +Type=oneshot +ExecStart=/usr/libexec/vyos/system/grub_update.py +TimeoutSec=5 +KillMode=process +StandardOutput=journal+console + +[Install] +WantedBy=vyos-router.service
\ No newline at end of file |