aboutsummaryrefslogtreecommitdiff
path: root/podman/install-systemd-user-service
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-01-24 13:09:50 +0000
committerFuwn <[email protected]>2026-01-24 13:09:50 +0000
commit396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b (patch)
treeb9df4ca6a70db45cfffbae6fdd7252e20fb8e93c /podman/install-systemd-user-service
downloadumami-main.tar.xz
umami-main.zip
Initial commitHEADmain
Created from https://vercel.com/new
Diffstat (limited to 'podman/install-systemd-user-service')
-rwxr-xr-xpodman/install-systemd-user-service10
1 files changed, 10 insertions, 0 deletions
diff --git a/podman/install-systemd-user-service b/podman/install-systemd-user-service
new file mode 100755
index 0000000..948a04c
--- /dev/null
+++ b/podman/install-systemd-user-service
@@ -0,0 +1,10 @@
+#!/bin/bash
+set -e
+service_name="umami"
+mkdir -p ~/.config/systemd/user
+cp $service_name.service ~/.config/systemd/user
+
+
+systemctl --user daemon-reload
+systemctl --user enable $service_name.service
+systemctl --user start $service_name.service