project-config/nodepool/elements/initialize-urandom/post-install.d/80-initialize-urandom

19 lines
350 B
Bash
Executable File

#!/bin/bash
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
case "$DIB_INIT_SYSTEM" in
systemd)
sudo chmod 0644 /usr/lib/systemd/system/initialize-urandom.service
systemctl enable initialize-urandom.service
;;
*)
echo "Unsupported init system"
exit 1
;;
esac