Skip to content
Snippets Groups Projects
Commit e0b1548c authored by Seblu's avatar Seblu
Browse files

change installsytems default config file

parent 4fed83ac
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@ ex_group.add_argument('-d', "--debug", action="store_true",
ex_group.add_argument('-q', "--quiet", action="store_true",
help="active quiet mode")
# common options
p_main.add_argument("-c", "--config", default="is",
p_main.add_argument("-c", "--config", default="installsystems",
help="config file path")
p_main.add_argument("-f", "--repo-filter", default=None,
help="select repository by name in config files")
......@@ -248,7 +248,7 @@ try:
installsystems.debug = args.debug
installsystems.quiet = args.quiet
# load isinstall config
config = MainConfigFile(args.config)
config = MainConfigFile(args.config, "installsystems")
config.merge(args)
# set debug and quiet mode after merge
installsystems.debug = args.debug
......
# is program configuration
# installsystems main configuration
[is]
[installsystems]
# Set debug mode
#debug = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment