mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00

Followup to #15616, which is not usable as it is (way, way, way too much noise) but actually found a few real nits that should be fixed. Signed-off-by: Ed Santiago <santiago@redhat.com>
6 lines
122 B
Bash
Executable File
6 lines
122 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if ! [ $(id -u) = 0 ]; then
|
|
echo "Please run as root! '$*' requires root privileges."
|
|
exit 1
|
|
fi
|