mirror of https://github.com/samply/bridgehead.git
50 lines
1.6 KiB
Bash
Executable File
50 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
### Note: Currently not complete, needs some features before useable for production
|
|
|
|
if ! ./lib/prerequisites.sh; then
|
|
echo "Prerequisites failed, exiting"
|
|
exit 1
|
|
fi
|
|
source site.conf
|
|
|
|
echo "Installing bridgehead"
|
|
|
|
if [ -z "$BRIDGEHEAD_PATH" ] ; then
|
|
echo "BRIDGEHEAD_PATH=${PWD}" >> /etc/environment
|
|
echo "Please reboot the system to properly set the enviroment"
|
|
exit
|
|
fi
|
|
|
|
_systemd_path=/etc/systemd/system/
|
|
|
|
|
|
echo "Installing bridgehead\@.service in systemd ..."
|
|
sudo cp convenience/bridgehead\@.service $_systemd_path
|
|
echo "Installing bridgehead\@.update.service in systemd ..."
|
|
sudo cp convenience/bridgehead-update\@.service $_systemd_path
|
|
sudo cp convenience/bridgehead-update\@.timer $_systemd_path
|
|
|
|
echo "Loading the bridgehead definitions in systemd"
|
|
sudo systemctl daemon-reload
|
|
|
|
|
|
echo "Starting Project ${project} "
|
|
if [ ! -f "/etc/systemd/system/bridgehead@${project}.service.d/bridgehead.conf" ]; then
|
|
echo "Can't find local configuration file for bridgehead@${project} service. Please ensure that the file /etc/systemd/system/bridgehead@${project}.service.d/bridgehead.conf exists"
|
|
exit
|
|
fi
|
|
|
|
sudo systemctl is-active --quiet bridgehead@"${project}"
|
|
if [ ! $? -eq 0 ]; then
|
|
echo "Starting bridgehead@${project} service ..."
|
|
sudo systemctl start bridgehead@"${project}"
|
|
echo "Enabling autostart of bridgehead@${project}.service"
|
|
sudo systemctl enable bridgehead@"${project}"
|
|
echo "Enabling nightly updates for bridgehead@${project}.service ..."
|
|
sudo systemctl enable --now bridgehead-update@"${project}".timer
|
|
fi
|
|
|
|
# Switch back to execution directory;
|
|
cd -
|
|
# TODO: Configuration of the different modules
|