William Petit
0c9d86b850
Some checks failed
arcad/emissary/pipeline/head There was a failure building this commit
10 lines
155 B
Bash
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 $@ |