From 2f2b3e972600db0562855d63a67d4a808eaf208c Mon Sep 17 00:00:00 2001 From: Sun Lihong Date: Fri, 9 May 2014 08:57:22 +0800 Subject: [PATCH] Add config file path to 'bindmount' list In bootstrap mode, if the config file specified by '-c' is not under the current dir, its sub dirs or the ks dir, it cannot be found, mic will uses the default '/etc/mic/mic.conf', add 'configmgr._siteconf' to bind list to also mount conf dir in bootstrap. Change-Id: I4477466289fdf7542b959c227935b542eaf36e77 --- mic/rt_util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mic/rt_util.py b/mic/rt_util.py index 3897efc..75e0342 100644 --- a/mic/rt_util.py +++ b/mic/rt_util.py @@ -140,6 +140,7 @@ def get_bindmounts(cropts): bindfiles = [ cropts['logfile'], configmgr._ksconf, + configmgr._siteconf, ] for lrepo in cropts['localrepos']: -- 2.7.4