8 lines
135 B
Bash
Executable file
8 lines
135 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
sudo apt install -y podman
|
|
|
|
systemctl --user enable podman.socket
|
|
systemctl --user start podman.socket
|