bridgehead/uninstall-bridgehead.sh

13 lines
398 B
Bash
Raw Normal View History

2022-01-10 16:31:48 +01:00
#!/bin/bash -e
2021-12-22 13:18:41 +01:00
source site.conf
2022-01-10 16:31:48 +01:00
source lib/functions.sh
2021-12-22 13:18:41 +01:00
2022-01-10 16:31:48 +01:00
echo "Stopping systemd services and removing bridgehead ..."
2022-01-10 16:36:54 +01:00
systemctl disable --now bridgehead@${project}.service
systemctl disable --now bridgehead-update@${project}.timer
systemctl disable --now bridgehead-update@${project}.service
rm -v /etc/systemd/system/{bridgehead\@.service,bridgehead-update\@.timer,bridgehead-update\@.service}