missed the check if /etc/bdisk/build.ini is specified
This commit is contained in:
parent
ef8562fb0e
commit
6f3a0f6b86
@ -24,7 +24,7 @@ def getHostname():
|
|||||||
hostname = platform.node()
|
hostname = platform.node()
|
||||||
return(hostname)
|
return(hostname)
|
||||||
|
|
||||||
def getConfig(conf_file='/etc/bdisk/build.ini'):
|
def getConfig(conf_file = '/etc/bdisk/build.ini'):
|
||||||
conf = False
|
conf = False
|
||||||
# define some defailt conf paths in case we're installed by
|
# define some defailt conf paths in case we're installed by
|
||||||
# a package manager. in order of the paths we should search.
|
# a package manager. in order of the paths we should search.
|
||||||
@ -48,6 +48,8 @@ def getConfig(conf_file='/etc/bdisk/build.ini'):
|
|||||||
if os.path.isfile(p):
|
if os.path.isfile(p):
|
||||||
conf = p
|
conf = p
|
||||||
break
|
break
|
||||||
|
else:
|
||||||
|
conf = conf_file
|
||||||
else:
|
else:
|
||||||
conf = conf_file
|
conf = conf_file
|
||||||
defconf = os.path.abspath('{0}/../extra/dist.build.ini'.format(os.path.dirname(os.path.realpath(__file__))))
|
defconf = os.path.abspath('{0}/../extra/dist.build.ini'.format(os.path.dirname(os.path.realpath(__file__))))
|
||||||
|
Loading…
Reference in New Issue
Block a user