Add first install arg
This commit is contained in:
parent
81fbb879ce
commit
420b1d9498
1 changed files with 14 additions and 2 deletions
16
install.py
16
install.py
|
@ -18,13 +18,16 @@ from ruamel.yaml import YAML # type: ignore
|
||||||
class Installer:
|
class Installer:
|
||||||
"""Regroups all the installation methods listed in the yaml conf file."""
|
"""Regroups all the installation methods listed in the yaml conf file."""
|
||||||
|
|
||||||
def __init__(self, force: bool = False, update: bool = False):
|
def __init__(
|
||||||
|
self, force: bool = False, first_install: bool = False, update: bool = False
|
||||||
|
):
|
||||||
yaml = YAML(typ="safe")
|
yaml = YAML(typ="safe")
|
||||||
self.conf = yaml.load(Path("configs.yml").text())
|
self.conf = yaml.load(Path("configs.yml").text())
|
||||||
self.base_dir = Path.getcwd()
|
self.base_dir = Path.getcwd()
|
||||||
self.home = Path("~").expanduser()
|
self.home = Path("~").expanduser()
|
||||||
self.operating_system = define_os()
|
self.operating_system = define_os()
|
||||||
self.force = force
|
self.force = force
|
||||||
|
self.first_install = first_install
|
||||||
self.update = update
|
self.update = update
|
||||||
|
|
||||||
def evaluate_condition(self, condition: str) -> bool:
|
def evaluate_condition(self, condition: str) -> bool:
|
||||||
|
@ -35,6 +38,8 @@ class Installer:
|
||||||
"debian": self.operating_system == "debian based",
|
"debian": self.operating_system == "debian based",
|
||||||
"force": self.force,
|
"force": self.force,
|
||||||
"no force": not self.force,
|
"no force": not self.force,
|
||||||
|
"first install": self.first_install,
|
||||||
|
"no first install": not self.first_install,
|
||||||
"update": self.update,
|
"update": self.update,
|
||||||
"no update": not self.update,
|
"no update": not self.update,
|
||||||
}
|
}
|
||||||
|
@ -371,6 +376,12 @@ def main() -> None:
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-F", "--force", action="store_true", help="Overwrite existing files",
|
"-F", "--force", action="store_true", help="Overwrite existing files",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-i",
|
||||||
|
"--first_install",
|
||||||
|
action="store_true",
|
||||||
|
help="Assume the program is not installed",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-g",
|
"-g",
|
||||||
"--generate",
|
"--generate",
|
||||||
|
@ -392,11 +403,12 @@ def main() -> None:
|
||||||
programs = args.programs
|
programs = args.programs
|
||||||
from_file = args.from_file
|
from_file = args.from_file
|
||||||
force = args.force
|
force = args.force
|
||||||
|
first_install = args.first_install
|
||||||
generate = args.generate
|
generate = args.generate
|
||||||
list_programs = args.list_programs
|
list_programs = args.list_programs
|
||||||
update = args.update
|
update = args.update
|
||||||
|
|
||||||
installer = Installer(force=force, update=update)
|
installer = Installer(force=force, first_install=first_install, update=update)
|
||||||
|
|
||||||
if generate:
|
if generate:
|
||||||
installer.generate_process_list()
|
installer.generate_process_list()
|
||||||
|
|
Loading…
Add table
Reference in a new issue