You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
766 B

from calculate.variables.datavars import Variable, StringType, ListType
'''
main:
chroot -> string
cl_template_path -> string
'''
Variable('cl_chroot_path', type=StringType.readonly, source='/')
Variable('cl_root_path', type=StringType.readonly, source='/')
Variable('cl_template_path', type=ListType.readonly,
source=['./tests/templates/testfiles/test_runner'])
Variable('cl_ignore_files', type=ListType.readonly, source=['*.swp'])
Variable('cl_config_path', type=StringType.readonly,
source='/var/lib/calculate/config')
Variable('cl_config_archive', type=StringType.readonly,
source='/var/lib/calculate/config-archive')
Variable('cl_exec_dir_path', type=StringType.readonly,
source='/var/lib/calculate/.execute')