diff options
| author | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
| commit | 396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b (patch) | |
| tree | b9df4ca6a70db45cfffbae6fdd7252e20fb8e93c /podman/install-systemd-user-service | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'podman/install-systemd-user-service')
| -rwxr-xr-x | podman/install-systemd-user-service | 10 |
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 |