diff options
author | Adam Williamson <awilliam@redhat.com> | 2016-11-23 09:28:33 -0800 |
---|---|---|
committer | Adam Williamson <awilliam@redhat.com> | 2016-11-23 09:29:24 -0800 |
commit | b99a4a6381b2ac004e98c93bd96d7b6a137a4820 (patch) | |
tree | ba87cbd38eb27f2ac560af6e3cd71a708700818c /files/scripts/create-filelist | |
parent | c585ca7873799964776a8e8789e531afe76c56c5 (diff) | |
download | ansible-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.
Diffstat (limited to 'files/scripts/create-filelist')
-rwxr-xr-x | files/scripts/create-filelist | 2 |
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 |