919b377808
- Add generator.py from Oslo - Add notifier from Oslo - Add generator bash script used by other projects to generate configuration files - Update openstack-common.conf file The patch https://review.openstack.org/#/c/36493/ needs to be merged before this one. I'll rebase this patch and generate the heat configuration. Fix bug #1183275 Change-Id: Id7f24874b7e3e07d06dcf14bc381b9d630f67fc8
10 lines
259 B
Bash
Executable File
10 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
TMPFILE=`mktemp`
|
|
trap "rm -f ${TMPFILE}" EXIT
|
|
tools/conf/generate_sample.sh "${TMPFILE}"
|
|
if ! diff "${TMPFILE}" etc/heat/heat.conf.sample
|
|
then
|
|
echo "E: heat.conf.sample is not up to date, please run tools/conf/generate_sample.sh"
|
|
exit 42
|
|
fi
|