31 lines
917 B
Diff
31 lines
917 B
Diff
|
From 311d4e320527158b6ff88604b45e15f0dc2bfa62 Mon Sep 17 00:00:00 2001
|
||
|
From: Alexander Graul <agraul@suse.com>
|
||
|
Date: Tue, 18 Jan 2022 12:59:43 +0100
|
||
|
Subject: [PATCH] Add custom SUSE capabilities as Grains
|
||
|
|
||
|
Add new custom SUSE capability for saltutil state module
|
||
|
---
|
||
|
salt/grains/extra.py | 8 ++++++++
|
||
|
1 file changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/salt/grains/extra.py b/salt/grains/extra.py
|
||
|
index 300052f1ee..f2504dbf19 100644
|
||
|
--- a/salt/grains/extra.py
|
||
|
+++ b/salt/grains/extra.py
|
||
|
@@ -96,3 +96,11 @@ def uefi():
|
||
|
def transactional():
|
||
|
"""Determine if the system is transactional."""
|
||
|
return {"transactional": bool(salt.utils.path.which("transactional-update"))}
|
||
|
+
|
||
|
+
|
||
|
+def suse_backported_capabilities():
|
||
|
+ return {
|
||
|
+ '__suse_reserved_pkg_all_versions_support': True,
|
||
|
+ '__suse_reserved_pkg_patches_support': True,
|
||
|
+ '__suse_reserved_saltutil_states_support': True
|
||
|
+ }
|
||
|
--
|
||
|
2.39.2
|
||
|
|
||
|
|