fix servicees
This commit is contained in:
parent
0d53c6a2b5
commit
3459a1ab39
|
@ -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
|
|
@ -1,6 +1,6 @@
|
|||
[Unit]
|
||||
Description=Space Weather Cache
|
||||
After=network.target
|
||||
After=network.target space-weather-cache.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[Unit]
|
||||
Description=Space Weather Global Image Generator
|
||||
After=network.target
|
||||
After=network.target space-weather-cache.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[Unit]
|
||||
Description=Space Weather Server
|
||||
After=network.target
|
||||
After=network.target space-weather-cache.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
|
|
Loading…
Reference in New Issue