Source code for reemote.operations.zypper.packages

# Copyright (c) 2025 Kim Jarvis TPF Software Services S.A. kim.jarvis@tpfsystems.com 
# This software is licensed under the MIT License. See the LICENSE file for details.
#
from typing import List
from reemote.operation_packages import Operation_packages
from reemote.commands.zypper.install import Install
from reemote.commands.zypper.remove import Remove
from reemote.facts.zypper.get_packages import Get_packages


[docs] class Packages(Operation_packages): """ A class to manage package operations on a remote system using `zypper`. This class provides functionality to install or remove packages on openSUSE/SUSE systems using the zypper package manager. It allows configuration of execution privileges and safety guards for package operations. Attributes: packages (List[str]): List of package names to install or remove. present (bool): If `True`, packages will be installed; if `False`, packages will be removed. guard (bool): If `False` the commands will not be executed. sudo (bool): If `True`, the commands will be executed with sudo privileges. su (bool): If `True`, the commands will be executed with su privileges. **Examples:** .. code:: python # Install packages on all hosts r = yield Packages(["nginx", "curl"], present=True) # Check if the operation was successful if r.cp.return_code == 0: print("Packages installed successfully") # Remove packages on all hosts r = yield Packages(["nginx", "curl"], present=False) # Check if the operation was successful if r.cp.return_code == 0: print("Packages removed successfully") Usage: This class is designed to be used in a generator-based workflow where commands are yielded for execution. Notes: - Commands are constructed based on the present flag to determine whether to install or remove packages. - Uses `zypper install` and `zypper remove` commands internally for package management. - Inherits from Operation_packages base class. """ def __init__(self, packages: List[str], present: bool, guard: bool = True, sudo: bool = False, su: bool = False): super().__init__(packages, present, guard, sudo, su)
[docs] def get_packages(self): return Get_packages()
[docs] def install_packages(self, packages=None,guard=None,present=None,sudo=None,su=None): return Install(self.packages, self.guard and self.present, self.sudo, self.su)
[docs] def remove_packages(self, packages=None,guard=None,present=None,sudo=None,su=None): return Remove(self.packages, self.guard and not self.present, self.sudo, self.su)