faq update

This commit is contained in:
2022-11-02 16:36:52 +02:00
parent 7cee859f19
commit 3aeaa8ce2c
6 changed files with 93 additions and 60 deletions

View File

@ -43,5 +43,6 @@ class RemotePullTrigger(Trigger):
trigger action which will be called at the start of the application
"""
for target in self.targets:
runner = RemotePull(self.configuration, target)
section, _ = self.configuration.gettype(target, self.architecture)
runner = RemotePull(self.configuration, section)
runner.run()

View File

@ -51,5 +51,6 @@ class RemotePushTrigger(Trigger):
packages(Iterable[Package]): list of all available packages
"""
for target in self.targets:
runner = RemotePush(self.configuration, target)
section, _ = self.configuration.gettype(target, self.architecture)
runner = RemotePush(self.configuration, section)
runner.run(result)