Add support for different config file

This commit is contained in:
flyingscorpio@arch-desktop 2020-12-05 19:08:33 +01:00
parent 2cb15b6bc6
commit 41657b7bb3

View file

@ -21,21 +21,22 @@ class Installer:
def __init__( def __init__(
self, self,
force: bool = False, config: str = "configs.yml",
first_install: bool = False, first_install: bool = False,
update: bool = False, force: bool = False,
hide_commands: bool = False, hide_commands: bool = False,
update: bool = False,
): ):
self.verify_secrets() self.verify_secrets()
yaml = YAML(typ="safe")
self.conf = yaml.load(Path("configs.yml").text())
self.base_dir = Path.getcwd() self.base_dir = Path.getcwd()
self.home = Path("~").expanduser() yaml = YAML(typ="safe")
self.conf = yaml.load(Path(config).text())
self.force = force self.force = force
self.first_install = first_install self.first_install = first_install
self.update = update
self.hide_commands = hide_commands self.hide_commands = hide_commands
self.home = Path("~").expanduser()
self.operating_system = self.define_os() self.operating_system = self.define_os()
self.update = update
def verify_secrets(self) -> None: def verify_secrets(self) -> None:
"""The repository contains a secrets.template, that must be taken care of """The repository contains a secrets.template, that must be taken care of
@ -454,16 +455,9 @@ def main() -> None:
help="Programs to process, can be none", help="Programs to process, can be none",
) )
parser.add_argument( parser.add_argument(
"-f", "-c",
"--from_file", "--config",
action="store_true", help="Use CONFIG file (default: 'configs.yml')",
help="Use 'process_list.txt' as programs to process",
)
parser.add_argument(
"-F",
"--force",
action="store_true",
help="Overwrite existing files",
) )
parser.add_argument( parser.add_argument(
"-i", "-i",
@ -471,12 +465,30 @@ def main() -> None:
action="store_true", action="store_true",
help="Assume the program is not installed", help="Assume the program is not installed",
) )
parser.add_argument(
"-F",
"--force",
action="store_true",
help="Overwrite existing files",
)
parser.add_argument(
"-f",
"--from_file",
action="store_true",
help="Use 'process_list.txt' as programs to process",
)
parser.add_argument( parser.add_argument(
"-g", "-g",
"--generate", "--generate",
action="store_true", action="store_true",
help="Generate a file containing all the programs from the config file", help="Generate a file containing all the programs from the config file",
) )
parser.add_argument(
"-H",
"--hide_commands",
action="store_true",
help="Hide command outputs",
)
parser.add_argument( parser.add_argument(
"-l", "-l",
"--list_programs", "--list_programs",
@ -489,29 +501,26 @@ def main() -> None:
action="store_true", action="store_true",
help="Update programs", help="Update programs",
) )
parser.add_argument(
"-H",
"--hide_commands",
action="store_true",
help="Hide command outputs",
)
args = parser.parse_args() args = parser.parse_args()
programs = args.programs programs = args.programs
from_file = args.from_file
force = args.force config = args.config
first_install = args.first_install first_install = args.first_install
force = args.force
from_file = args.from_file
generate = args.generate generate = args.generate
hide_commands = args.hide_commands
list_programs = args.list_programs list_programs = args.list_programs
update = args.update update = args.update
hide_commands = args.hide_commands
installer = Installer( installer = Installer(
force=force, config=config,
first_install=first_install, first_install=first_install,
update=update, force=force,
hide_commands=hide_commands, hide_commands=hide_commands,
update=update,
) )
if generate: if generate: