1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 20:33:00 +00:00

WIP: Services.copy_configs

This commit is contained in:
Jörn-Michael Miehe 2022-01-24 18:07:19 +01:00
parent 9922bcd288
commit 3c1f1e74cb
2 changed files with 14 additions and 0 deletions

View file

@ -53,6 +53,9 @@ class UpdateCommand(KiwiCommand):
): ):
return return
# services.copy_configs()
# return
ctx = get_current_context() ctx = get_current_context()
assert isinstance(BuildCommand, click.Command) assert isinstance(BuildCommand, click.Command)
ctx.forward(BuildCommand) ctx.forward(BuildCommand)

View file

@ -21,6 +21,17 @@ class Services:
def __bool__(self) -> bool: def __bool__(self) -> bool:
return bool(self.content) return bool(self.content)
# def copy_configs(self):
# configs = (
# config
# for service in self.content
# for config in service.configs
# )
#
# print(list(configs))
#
# # Rootkit("rsync").
@property @property
def names(self) -> Generator[str, None, None]: def names(self) -> Generator[str, None, None]:
return ( return (