Enable services right after installing
1 files changed, 1 insertions(+), 0 deletions(-) M services/support/install.sh
M services/support/install.sh => services/support/install.sh +1 -0
@@ 4,6 4,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")" for file in *.service; do echo "installing ${file}" sudo cp "${file}" /etc/systemd/system/ + sudo systemctl enable "${file}" done echo "reloading daemon"