fix servicees

This commit is contained in:
Cyberes 2024-09-04 16:58:42 -06:00
parent 0d53c6a2b5
commit 3459a1ab39
4 changed files with 17 additions and 3 deletions

14
feeder/systemd/enable.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
SOURCE=${BASH_SOURCE[0]}
while [ -L "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )
SOURCE=$(readlink "$SOURCE")
[[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )
cp "$DIR"/*.service /etc/systemd/system
systemctl daemon-reload
systemctl enable --now *.service
systemctl restart *.service

View File

@ -1,6 +1,6 @@
[Unit]
Description=Space Weather Cache
After=network.target
After=network.target space-weather-cache.service
[Service]
Type=simple

View File

@ -1,6 +1,6 @@
[Unit]
Description=Space Weather Global Image Generator
After=network.target
After=network.target space-weather-cache.service
[Service]
Type=simple

View File

@ -1,6 +1,6 @@
[Unit]
Description=Space Weather Server
After=network.target
After=network.target space-weather-cache.service
[Service]
Type=simple