#!/usr/bin/env bash

set -euo pipefail

source ./_config
service_name="$SERVICE_NAME.service"

systemctl enable $service_name

echo Enabled $service_name!
