From c3fedf7309b251deb96bbc0cfa1de04d8d3a41ce Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 27 May 2020 12:16:24 -0400 Subject: [PATCH] Fix missing import isn osimage --- confluent_server/bin/osimage | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/confluent_server/bin/osimage b/confluent_server/bin/osimage index 0a6a57b6..7cae8b43 100644 --- a/confluent_server/bin/osimage +++ b/confluent_server/bin/osimage @@ -5,6 +5,7 @@ import eventlet.green.subprocess as subprocess import glob import os import os.path +import shutil import sys import time @@ -139,6 +140,9 @@ def initialize(cmdset): # ok, also need to think on how to handle getinstalldisk if not os.path.exists('/etc/confluent/srvcert.pem'): subprocess.check_call(['collective', 'gencert']) + # TODO: check selinux and segetbool for httpd_can_network_connect + # tftp-server available and enabled? + # httpd available and enabled? def osimport(imagefile):