From 38774b6bcc84553bca19b0c51cd574062f6f3aac Mon Sep 17 00:00:00 2001 From: Mike Dickey Date: Tue, 9 Jul 2019 11:15:52 -0700 Subject: [PATCH] Updated script used to generate list of files to exclude from minimal images, so that it supports major version numbers greater than 7. Note that manual review of file diffs for every major.minor and corresponding updates for this script is still recommended. --- splunk/common-files/make-minimal-exclude.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/splunk/common-files/make-minimal-exclude.py b/splunk/common-files/make-minimal-exclude.py index f461da17..54a9c3ce 100755 --- a/splunk/common-files/make-minimal-exclude.py +++ b/splunk/common-files/make-minimal-exclude.py @@ -41,3 +41,6 @@ print "*/etc/apps/gettingstarted*" else: print "*/etc/apps/splunk_metrics_workspace*" + elif int(m.group(1)) > 7: + print EXCLUDE_V7 + print "*/etc/apps/splunk_metrics_workspace*"