11 lines
278 B
Bash
11 lines
278 B
Bash
|
#!/usr/bin/env bash
|
||
|
# pod must be running and not managed by systemd
|
||
|
|
||
|
|
||
|
mkdir -p ~/.config/systemd/user/
|
||
|
podman generate systemd --files --name podman-jitsi
|
||
|
cp *.service ~/.config/systemd/user/
|
||
|
|
||
|
podman pod stop podman-jitsi
|
||
|
systemctl --user --now enable pod-podman-jitsi.service
|