Moved bash aliases and functions from playbook files to lockdown role files

This commit is contained in:
Alex Tavarez
2025-10-21 16:32:46 -04:00
parent 09cdafc570
commit 430db9c1d8
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/bash
# podman bash function
conman () {
if command -v podman &> /dev/null; then
CONTAINER_MANAGER="podman"
elif command -v docker &> /dev/null; then
CONTAINER_MANAGER="docker"
else
exit 1
fi
$CONTAINER_MANAGER
}