6 lines
178 B
Plaintext
6 lines
178 B
Plaintext
|
#!/bin/bash
|
||
|
# makes link to this service file
|
||
|
DIR="$(dirname "$(readlink -f "$0")")"
|
||
|
sudo rm /etc/systemd/system/caddy.service
|
||
|
sudo ln -s $DIR/caddy.service /etc/systemd/system/
|