Follow symlinks when assembling the templates

This commit is contained in:
Pim van Pelt
2023-05-31 15:30:40 +00:00
parent 4c3d92008f
commit 8a64c5594a
120 changed files with 1373 additions and 1 deletions

View File

@ -0,0 +1,7 @@
#!/bin/sh
echo " * Disabling VPP, Bird and FRR"
for i in vpp vppcfg bird-dataplane frr; do
rm -f /etc/systemd/system/multi-user.target.wants/${i}.service
ln -sf /dev/null /etc/systemd/system/${i}.service
done