Update install script
This commit is contained in:
parent
09529b3ed3
commit
eed03938dc
13
install.sh
13
install.sh
@ -10,15 +10,16 @@ if [ -f $run_directory/.disabled ]; then
|
||||
fi
|
||||
|
||||
echo "Copying Systemd units to system directory..."
|
||||
$sudo cp $run_directory/systemd-templates/set-ip-routes.service /etc/systemd/system/
|
||||
$sudo sed -i -e "s/PH_DNS/$dns_server/g" /etc/systemd/system/set-ip-routes.service
|
||||
$sudo sed -i -e "s:PH_NETWORK:$target_network:g" /etc/systemd/system/set-ip-routes.service
|
||||
$sudo cp $run_directory/systemd-templates/set-ip-routes.path /etc/systemd/system/
|
||||
mkdir /etc/systemd/system
|
||||
cp $run_directory/systemd-templates/set-ip-routes.service /etc/systemd/system/
|
||||
sed -i -e "s/PH_DNS/$dns_server/g" /etc/systemd/system/set-ip-routes.service
|
||||
sed -i -e "s:PH_NETWORK:$target_network:g" /etc/systemd/system/set-ip-routes.service
|
||||
cp $run_directory/systemd-templates/set-ip-routes.path /etc/systemd/system/
|
||||
|
||||
echo "Reloading Systemd..."
|
||||
$sudo systemctl daemon-reload
|
||||
systemctl daemon-reload
|
||||
echo "Enabling path unit (not starting it, either do it manually or reboot)..."
|
||||
$sudo systemctl enable set-ip-routes.path
|
||||
systemctl enable set-ip-routes.path
|
||||
|
||||
echo "Finished install. Exiting..."
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user