mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-07-15 15:05:48 +00:00
faq update
This commit is contained in:
@ -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()
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user