16be6d7ce0
As with the previous similar changes, this is intended to catch problems as they happen instead of ignoring them and continuing on to potentially fail later. Setting this on all existing scripts will allow us to enforce use via Jenkins. Change-Id: Iad2d490c86dceab148ea9ab08f457c49a5d5352e
35 lines
927 B
Bash
Executable File
35 lines
927 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
[ -n "$TARGET_ROOT" ]
|
|
|
|
# Prevent package installs from starting daemons
|
|
sudo mv $TARGET_ROOT/sbin/start-stop-daemon $TARGET_ROOT/sbin/start-stop-daemon.REAL
|
|
sudo dd of=$TARGET_ROOT/sbin/start-stop-daemon <<EOF
|
|
#!/bin/sh
|
|
echo
|
|
echo "Warning: Fake start-stop-daemon called, doing nothing"
|
|
EOF
|
|
sudo chmod 755 $TARGET_ROOT/sbin/start-stop-daemon
|
|
|
|
if [ -f $TARGET_ROOT/sbin/initctl ]
|
|
then
|
|
sudo mv $TARGET_ROOT/sbin/initctl $TARGET_ROOT/sbin/initctl.REAL
|
|
sudo dd of=$TARGET_ROOT/sbin/initctl <<EOF
|
|
#!/bin/sh
|
|
echo "initctl (tripleo 1.0)"
|
|
echo "Warning: Fake initctl called, doing nothing"
|
|
EOF
|
|
sudo chmod 755 $TARGET_ROOT/sbin/initctl
|
|
fi
|
|
|
|
sudo dd of=$TARGET_ROOT/usr/sbin/policy-rc.d <<EOF
|
|
#!/bin/sh
|
|
# 101 Action not allowed. The requested action will not be performed because
|
|
# of runlevel or local policy constraints.
|
|
exit 101
|
|
EOF
|
|
sudo chmod 755 $TARGET_ROOT/usr/sbin/policy-rc.d
|