mirror of
https://github.com/containers/podman.git
synced 2026-09-13 06:09:35 -04:00
6 lines
124 B
Bash
Executable File
6 lines
124 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if ! [ $(id -u) = 0 ]; then
|
|
echo "Please run as root! '$*' requires root privileges."
|
|
exit 1
|
|
fi
|