diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-24 19:20:35 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-24 19:23:49 +0200 |
commit | c5fcc109e78bddea0e27bf4a5ea57f8e35c26be3 (patch) | |
tree | 46dfa242ccfa09207b480322e20d0806845a3ccb /src/etc | |
parent | 3897ffcbcde1d0a0ea3ae9af8b9cbf5175852cdc (diff) | |
download | vyos-1x-c5fcc109e78bddea0e27bf4a5ea57f8e35c26be3.tar.gz vyos-1x-c5fcc109e78bddea0e27bf4a5ea57f8e35c26be3.zip |
systemd: radvd: T3641: empty ConditionPathExists variable
The variable ConditionPathExists is now set in the upstream systemd unit file,
thus the VyOS generated unit file is located under /run/radvd/radvd.conf and
the condition won't match.
This can be solved by first clearing the upstream value for ConditionPathExists
and the set the new path.
Diffstat (limited to 'src/etc')
-rw-r--r-- | src/etc/systemd/system/radvd.service.d/override.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/etc/systemd/system/radvd.service.d/override.conf b/src/etc/systemd/system/radvd.service.d/override.conf index c2f640cf5..472710a8b 100644 --- a/src/etc/systemd/system/radvd.service.d/override.conf +++ b/src/etc/systemd/system/radvd.service.d/override.conf @@ -1,4 +1,5 @@ [Unit] +ConditionPathExists= ConditionPathExists=/run/radvd/radvd.conf After= After=vyos-router.service |