Fix: scripts_all_pairs does not trigger archive

Change-Id: I46b41fdfdd13d7039521c5d19f90f558ae2ad944
This commit is contained in:
Dmitrii Sutiagin 2017-10-20 16:42:48 -07:00 committed by Dmitry Sutyagin
parent fc2dbf8707
commit 377f3bb085
3 changed files with 8 additions and 4 deletions

View File

@ -4,7 +4,7 @@
%global pypi_name timmy
Name: python-%{pypi_name}
Version: 1.26.11
Version: 1.26.12
Release: 1%{?dist}~mos0
Summary: Log collector tool for OpenStack Fuel
@ -107,6 +107,9 @@ popd
%changelog
* Fri Oct 20 2017 Dmitry Sutyagin <dsutyagin@mirantis.com> - 1.26.12
- Fix: scripts_all_pairs does not trigger archive
* Wed Mar 22 2017 Dmitrii Kabanov <dkabanov@mirantis.com> - 1.26.11
- Change: prepend conf.env_vars to scripts with env vars

View File

@ -16,7 +16,7 @@
# under the License.
project_name = 'timmy'
version = '1.26.11'
version = '1.26.12'
if __name__ == '__main__':
import sys

View File

@ -34,13 +34,14 @@ import shutil
class Node(object):
ckey = 'cmds'
skey = 'scripts'
sapkey = 'scripts_all_pairs'
fkey = 'files'
flkey = 'filelists'
lkey = 'logs'
pkey = 'put'
conf_actionable = [lkey, ckey, skey, fkey, flkey, pkey]
conf_actionable = [lkey, ckey, skey, fkey, flkey, pkey, sapkey]
conf_appendable = [lkey, ckey, skey, fkey, flkey, pkey]
conf_archive_general = [ckey, skey, fkey, flkey]
conf_archive_general = [ckey, skey, fkey, flkey, sapkey]
conf_keep_default = [skey, ckey, fkey, flkey]
conf_once_prefix = 'once_'
conf_match_prefix = 'by_'