6409c07939
- Remove salt-minion python2 requirement when python3 is default (bsc#1081592) - Remove-obsolete-unicode-handling-in-pkg.info_installed - Added: * remove-obsolete-unicode-handling-in-pkg.info_install.patch - Update to salt-2018.1.99 - Modified: * activate-all-beacons-sources-config-pillar-grains.patch * avoid-excessive-syslogging-by-watchdog-cronjob-58.patch * feat-add-grain-for-all-fqdns.patch * fix-bsc-1065792.patch * list_pkgs-add-parameter-for-returned-attribute-selec.patch * run-salt-api-as-user-salt-bsc-1064520.patch * run-salt-master-as-dedicated-salt-user.patch - Deleted: * python3-compatibility-fix-got-bytes-instead-of-strin.patch * enable-with-salt-version-parameter-for-setup.py-scri.patch * catching-error-when-pidfile-cannot-be-deleted.patch * bugfix-always-return-a-string-list-on-unknown-job-ta.patch * bugfix-the-logic-according-to-the-exact-described-pu.patch * cherrypy-read-reads-bytes-from-the-wire-and-write-th.patch * fix-for-delete_deployment-in-kubernetes-module.patch * fix-salt-master-for-old-psutil.patch * introduce-process_count_max-minion-configuration-par.patch * multiprocessing-minion-option-documentation-fixes.patch * older-logrotate-need-su-directive.patch * return-error-when-gid_from_name-and-group-does-not-e.patch * set-shell-environment-variable-64.patch * split-only-strings-if-they-are-such.patch OBS-URL: https://build.opensuse.org/request/show/581002 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=112
89 lines
2.7 KiB
Diff
89 lines
2.7 KiB
Diff
From eadad9aacd0c660feeb4b99217310f77958843e0 Mon Sep 17 00:00:00 2001
|
|
From: Michele Bologna <michele.bologna@suse.com>
|
|
Date: Thu, 14 Dec 2017 18:20:02 +0100
|
|
Subject: [PATCH] Feat: add grain for all FQDNs
|
|
|
|
This PR adds a grain named fqdns to the grains.
|
|
fqdns represents all the FQDNs known for the system on all available interfaces (excluding lo).
|
|
|
|
Note: hostname != FQDN
|
|
|
|
hostname is the UNIX name of the machine. A machine can have one and only one hostname.
|
|
FQDN is host.domain that resolves to an IP address that the machines is answering to.
|
|
A machine can have 1+ FQDNs.
|
|
|
|
Upstream PR:
|
|
https://github.com/saltstack/salt/pull/45060
|
|
---
|
|
salt/grains/core.py | 27 +++++++++++++++++++++++++++
|
|
tests/integration/modules/test_grains.py | 1 +
|
|
tests/unit/grains/test_core.py | 1 +
|
|
3 files changed, 29 insertions(+)
|
|
|
|
diff --git a/salt/grains/core.py b/salt/grains/core.py
|
|
index 7d628bccb9..af25097117 100644
|
|
--- a/salt/grains/core.py
|
|
+++ b/salt/grains/core.py
|
|
@@ -1890,6 +1890,33 @@ def append_domain():
|
|
return grain
|
|
|
|
|
|
+def fqdns():
|
|
+ '''
|
|
+ Return all known FQDNs for the system by enumerating all interfaces and
|
|
+ then trying to reverse resolve them (excluding 'lo' interface).
|
|
+ '''
|
|
+ # Provides:
|
|
+ # fqdns
|
|
+
|
|
+ grains = {}
|
|
+ fqdns = set()
|
|
+
|
|
+ addresses = salt.utils.network.ip_addrs(include_loopback=False,
|
|
+ interface_data=_INTERFACES)
|
|
+ addresses.extend(salt.utils.network.ip_addrs6(include_loopback=False,
|
|
+ interface_data=_INTERFACES))
|
|
+
|
|
+ for ip in addresses:
|
|
+ try:
|
|
+ fqdns.add(socket.gethostbyaddr(ip)[0])
|
|
+ except (socket.error, socket.herror,
|
|
+ socket.gaierror, socket.timeout) as e:
|
|
+ log.error("Exception during resolving address: " + str(e))
|
|
+
|
|
+ grains['fqdns'] = list(fqdns)
|
|
+ return grains
|
|
+
|
|
+
|
|
def ip_fqdn():
|
|
'''
|
|
Return ip address and FQDN grains
|
|
diff --git a/tests/integration/modules/test_grains.py b/tests/integration/modules/test_grains.py
|
|
index 709f882b45..aa7bd44202 100644
|
|
--- a/tests/integration/modules/test_grains.py
|
|
+++ b/tests/integration/modules/test_grains.py
|
|
@@ -51,6 +51,7 @@ class TestModulesGrains(ModuleCase):
|
|
'cpuarch',
|
|
'domain',
|
|
'fqdn',
|
|
+ 'fqdns',
|
|
'gid',
|
|
'groupname',
|
|
'host',
|
|
diff --git a/tests/unit/grains/test_core.py b/tests/unit/grains/test_core.py
|
|
index e781fadefe..dba8d082c5 100644
|
|
--- a/tests/unit/grains/test_core.py
|
|
+++ b/tests/unit/grains/test_core.py
|
|
@@ -7,6 +7,7 @@
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
import logging
|
|
import os
|
|
+import socket
|
|
|
|
# Import Salt Testing Libs
|
|
try:
|
|
--
|
|
2.16.1
|
|
|
|
|