From 78e419ee2c043cadccbf74c13a1ece4fd7834302 Mon Sep 17 00:00:00 2001 From: Tudor Marcu Date: Thu, 27 Oct 2016 12:13:13 -0700 Subject: [PATCH] Print out which builder.conf is being used Signed-off-by: Tudor Marcu --- bundle-chroot-builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bundle-chroot-builder.py b/bundle-chroot-builder.py index 04ada3a..336e66a 100755 --- a/bundle-chroot-builder.py +++ b/bundle-chroot-builder.py @@ -54,6 +54,7 @@ def read_config(args): if args.config: buildconf = args.config config = configparser.ConfigParser() + print("Reading from %s" % buildconf) config.read(buildconf) for option in ['SERVER_STATE_DIR', 'BUNDLE_DIR', 'YUM_CONF']: