8 lines
181 B
Bash
8 lines
181 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
systemctl daemon-reload
|
||
|
|
# Make sure its enabled
|
||
|
|
systemctl enable --now watcher
|
||
|
|
# Restart it; it might have already been installed and running
|
||
|
|
systemctl restart watcher
|