1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 21:03:00 +00:00
kiwi-scp/src/kiwi/subcommands/update.py

22 lines
565 B
Python
Raw Normal View History

2020-08-18 12:37:07 +00:00
# local
from ._subcommand import FlexCommand
class UpdateCommand(FlexCommand):
"""kiwi update"""
def __init__(self):
super().__init__(
'update', "Updating",
description="Update the whole instance, a project or service(s) inside a project"
)
def _run_services(self, runner, config, args, services):
result = runner.run('build')
result &= runner.run('pull')
result &= runner.run('conf-copy')
result &= runner.run('down')
result &= runner.run('up')
return result