emissary/misc/docker/docker-agent-wrapper.sh
William Petit 0c9d86b850
Some checks failed
arcad/emissary/pipeline/head There was a failure building this commit
feat: add docker recipe + environment with default interpolation in config
2023-10-30 20:05:00 +01:00

10 lines
155 B
Bash

#!/bin/sh
set -e
# Generate machine id if not exists
if [ ! -f /etc/machine-id ]; then
cat /proc/sys/kernel/random/uuid > /etc/machine-id
fi
exec $@