add app-admin/salt with python-3.11 compat

This commit is contained in:
2023-06-08 08:27:35 +03:00
parent 7397049453
commit 60d7412b0b
24 changed files with 776 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/salt/modules/gentoolkitmod.py b/salt/modules/gentoolkitmod.py
index cc78c37114..f0949d19a8 100644
--- a/salt/modules/gentoolkitmod.py
+++ b/salt/modules/gentoolkitmod.py
@@ -49,7 +49,7 @@ def revdep_rebuild(lib=None):
salt '*' gentoolkit.revdep_rebuild
"""
- cmd = "revdep-rebuild -i --quiet --no-progress"
+ cmd = "revdep-rebuild -i --quiet"
if lib is not None:
cmd += " --library={0}".format(lib)
return __salt__["cmd.retcode"](cmd, python_shell=False) == 0