779f3d8109
We overlooked setting up the proper permission on both our initialize-urandom python and systemd scripts. Change-Id: I6da27a049954961c9333ebeb48382f8b175dc2d9 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
19 lines
350 B
Bash
Executable File
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
|