From 59471ed0c249771fa6c46cf0b020222b7caeee42 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Thu, 3 Jan 2019 15:37:28 +0100 Subject: T1147: Fix SNMP config file generation on newly installed systems --- src/conf_mode/snmp.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/conf_mode/snmp.py b/src/conf_mode/snmp.py index 026f6d2f7..d21a2b603 100755 --- a/src/conf_mode/snmp.py +++ b/src/conf_mode/snmp.py @@ -21,6 +21,7 @@ import os import shutil import stat import pwd +import time import jinja2 import random @@ -793,6 +794,9 @@ def apply(snmp): # snmpd, which we see when a magic line appears in this file. snmpReady = False while not snmpReady: + while not os.path.exists(config_file_user): + time.sleep(1) + with open(config_file_user, 'r') as f: for line in f: # Search for our magic string inside the file -- cgit v1.2.3