6 lines
172 B
Bash
6 lines
172 B
Bash
#!/bin/sh
|
|
|
|
echo " * Disabling VPP, Bird and FRR"
|
|
for i in vpp vppcfg bird-dataplane frr; do
|
|
ln -sf /dev/null /etc/systemd/system/multi-user.target.wants/${i}.service
|
|
done |