project-config/nodepool/elements/initialize-urandom/post-install.d/80-initialize-urandom
Paul Belanger 779f3d8109
Fix file permissions with initialize-urandom element
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>
2016-08-18 23:09:10 -04:00

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