Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement simulate for rpm.install_packages(). #84

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion pleskdistup/common/src/rpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,21 @@ def is_package_installed(pkg: str) -> bool:
return res.returncode == 0


def install_packages(pkgs: typing.List[str], repository: typing.Optional[str] = None, force_package_config: bool = False) -> None:
def install_packages(
pkgs: typing.List[str],
repository: typing.Optional[str] = None,
force_package_config: bool = False,
simulate: bool = False,
) -> None:
# force_package_config is not supported yet
if len(pkgs) == 0:
return

command = ["/usr/bin/yum", "install"]
if repository is not None:
command += ["--repo", repository]
if simulate:
command += ["--setopt", "tsflags=test"]
command += ["-y"] + pkgs

util.logged_check_call(command)
Expand Down
Loading