Add include function: move repos to a separate config file, hidden

This commit is contained in:
flyingscorpio@arch-desktop 2021-03-03 19:35:48 +01:00
parent 0ae95adf3d
commit 0ba75e330d
3 changed files with 10 additions and 1 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@
__pycache__/ __pycache__/
process_list.txt process_list.txt
secrets secrets
repos.yml

View file

@ -245,6 +245,15 @@ class Installer:
f"Are the packages really meant for {self.operating_system} systems?" f"Are the packages really meant for {self.operating_system} systems?"
) )
def do_include(self, yml_file: str) -> None:
"""Include an additional config file."""
yaml = YAML(typ="safe")
additional_conf = yaml.load(Path(yml_file).text())
programs = list(additional_conf.keys())
self.conf.update(additional_conf)
self.process(programs)
def do_run(self, command: str, condition: str = "true") -> None: def do_run(self, command: str, condition: str = "true") -> None:
"""Run a command.""" """Run a command."""

1
todo
View file

@ -2,4 +2,3 @@ support multiple remotes in git clones
add upstream to i3blocks-contrib repo add upstream to i3blocks-contrib repo
remove sensitive information in source remove sensitive information in source
remove sensitive information in history : https://docs.github.com/en/github/authenticating-to-github/removing-sensitive-data-from-a-repository remove sensitive information in history : https://docs.github.com/en/github/authenticating-to-github/removing-sensitive-data-from-a-repository
add 'input' or 'include' function for additional config file(s) -> use dict.update() with new config file loaded through yaml