Add include function: move repos to a separate config file, hidden
This commit is contained in:
parent
0ae95adf3d
commit
0ba75e330d
3 changed files with 10 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@
|
|||
__pycache__/
|
||||
process_list.txt
|
||||
secrets
|
||||
repos.yml
|
||||
|
|
|
@ -245,6 +245,15 @@ class Installer:
|
|||
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:
|
||||
"""Run a command."""
|
||||
|
||||
|
|
1
todo
1
todo
|
@ -2,4 +2,3 @@ support multiple remotes in git clones
|
|||
add upstream to i3blocks-contrib repo
|
||||
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
|
||||
add 'input' or 'include' function for additional config file(s) -> use dict.update() with new config file loaded through yaml
|
||||
|
|
Loading…
Add table
Reference in a new issue