summaryrefslogtreecommitdiff
path: root/tools/conf/check_uptodate.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/conf/check_uptodate.sh')
-rwxr-xr-xtools/conf/check_uptodate.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/conf/check_uptodate.sh b/tools/conf/check_uptodate.sh
deleted file mode 100755
index 4e9c9a727..000000000
--- a/tools/conf/check_uptodate.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-TEMPDIR=`mktemp -d`
-CFGFILE=ironic.conf.sample
-tools/conf/generate_sample.sh -b ./ -p ironic -o $TEMPDIR
-if ! diff $TEMPDIR/$CFGFILE etc/ironic/$CFGFILE
-then
- echo "E: ironic.conf.sample is not up to date, please run tools/conf/generate_sample.sh"
- exit 42
-fi