summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Williamson <awilliam@redhat.com>2016-11-23 09:28:33 -0800
committerAdam Williamson <awilliam@redhat.com>2016-11-23 09:29:24 -0800
commitb99a4a6381b2ac004e98c93bd96d7b6a137a4820 (patch)
treeba87cbd38eb27f2ac560af6e3cd71a708700818c
parentc585ca7873799964776a8e8789e531afe76c56c5 (diff)
downloadansible-b99a4a6381b2ac004e98c93bd96d7b6a137a4820.tar.gz
ansible-b99a4a6381b2ac004e98c93bd96d7b6a137a4820.tar.xz
ansible-b99a4a6381b2ac004e98c93bd96d7b6a137a4820.zip
create-filelist: also skip the imagelist when making others
add the imagelist's name to skip_files as we do for the other two files. tibbs is committing the same change to upstream.
-rwxr-xr-xfiles/scripts/create-filelist2
1 files changed, 2 insertions, 0 deletions
diff --git a/files/scripts/create-filelist b/files/scripts/create-filelist
index fcbdea468..3b831f8c0 100755
--- a/files/scripts/create-filelist
+++ b/files/scripts/create-filelist
@@ -100,6 +100,8 @@ def parseopts():
opts.skip_files += [opts.timelist.name]
if not opts.filelist.name == '<stdout>':
opts.skip_files += [opts.filelist.name]
+ if not opts.imagelist.name == '<stdout>':
+ opts.skip_files += [opts.imagelist.name]
return opts