mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-28 09:17:17 +00:00
* Demo email report implementation * improved ssl mode * correct default option spelling and more fields to be hidden for not extended reports
55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
#
|
|
# Copyright (c) 2021 ahriman team.
|
|
#
|
|
# This file is part of ahriman
|
|
# (see https://github.com/arcan1s/ahriman).
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
from pathlib import Path
|
|
from typing import Iterable
|
|
|
|
from ahriman.core.configuration import Configuration
|
|
from ahriman.core.upload.upload import Upload
|
|
from ahriman.core.util import check_output
|
|
from ahriman.models.package import Package
|
|
|
|
|
|
class Rsync(Upload):
|
|
"""
|
|
rsync wrapper
|
|
:ivar command: command arguments for sync
|
|
:ivar remote: remote address to sync
|
|
"""
|
|
|
|
_check_output = check_output
|
|
|
|
def __init__(self, architecture: str, configuration: Configuration) -> None:
|
|
"""
|
|
default constructor
|
|
:param architecture: repository architecture
|
|
:param configuration: configuration instance
|
|
"""
|
|
Upload.__init__(self, architecture, configuration)
|
|
self.command = configuration.getlist("rsync", "command")
|
|
self.remote = configuration.get("rsync", "remote")
|
|
|
|
def sync(self, path: Path, built_packages: Iterable[Package]) -> None:
|
|
"""
|
|
sync data to remote server
|
|
:param path: local path to sync
|
|
:param built_packages: list of packages which has just been built
|
|
"""
|
|
Rsync._check_output(*self.command, str(path), self.remote, exception=None, logger=self.logger)
|