summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-03-17 14:43:57 +0100
committerChristian Breunig <christian@breunig.cc>2024-03-17 14:43:57 +0100
commit4291a1a423c3cbbae9e4142575b36d6fbe1c126f (patch)
tree6bf50a4b1da02a2758bbc690491e8d2b5af231fb /python
parent5daebff4a5cc570f22c75e002ded8564b8e22e33 (diff)
downloadvyos-1x-4291a1a423c3cbbae9e4142575b36d6fbe1c126f.tar.gz
vyos-1x-4291a1a423c3cbbae9e4142575b36d6fbe1c126f.zip
T6133: append domain-name to commit-archive if defined
Diffstat (limited to 'python')
-rw-r--r--python/vyos/config_mgmt.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/vyos/config_mgmt.py b/python/vyos/config_mgmt.py
index ff078649d..28ccee769 100644
--- a/python/vyos/config_mgmt.py
+++ b/python/vyos/config_mgmt.py
@@ -132,6 +132,9 @@ class ConfigMgmt:
{}).get('source_address', '')
if config.exists(['system', 'host-name']):
self.hostname = config.return_value(['system', 'host-name'])
+ if config.exists(['system', 'domain-name']):
+ tmp = config.return_value(['system', 'domain-name'])
+ self.hostname += f'.{tmp}'
else:
self.hostname = 'vyos'