2021-01-08 13:41:50 +01:00
|
|
|
From 713ccfdc5c6733495d3ce7f26a8cfeddb8e9e9c4 Mon Sep 17 00:00:00 2001
|
2018-07-30 13:52:13 +02:00
|
|
|
From: =?UTF-8?q?Pablo=20Su=C3=A1rez=20Hern=C3=A1ndez?=
|
|
|
|
<psuarezhernandez@suse.com>
|
|
|
|
Date: Thu, 21 Jun 2018 11:57:57 +0100
|
|
|
|
Subject: [PATCH] Add custom SUSE capabilities as Grains
|
|
|
|
|
|
|
|
---
|
|
|
|
salt/grains/extra.py | 7 +++++++
|
|
|
|
1 file changed, 7 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/salt/grains/extra.py b/salt/grains/extra.py
|
2021-01-08 13:41:50 +01:00
|
|
|
index 2fdbe6526a..ddc22293ea 100644
|
2018-07-30 13:52:13 +02:00
|
|
|
--- a/salt/grains/extra.py
|
|
|
|
+++ b/salt/grains/extra.py
|
2021-01-08 13:41:50 +01:00
|
|
|
@@ -66,3 +66,10 @@ def config():
|
2018-07-30 13:52:13 +02:00
|
|
|
log.warning("Bad syntax in grains file! Skipping.")
|
|
|
|
return {}
|
|
|
|
return {}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def suse_backported_capabilities():
|
|
|
|
+ return {
|
|
|
|
+ '__suse_reserved_pkg_all_versions_support': True,
|
|
|
|
+ '__suse_reserved_pkg_patches_support': True
|
|
|
|
+ }
|
|
|
|
--
|
2021-01-08 13:41:50 +01:00
|
|
|
2.29.2
|
2018-07-30 13:52:13 +02:00
|
|
|
|
|
|
|
|