#!/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