Add new config params

This commit is contained in:
Erik Johnson 2014-02-19 19:52:46 -06:00
parent c98ba8c8ac
commit 651d79b721

View File

@ -134,11 +134,16 @@ VALID_OPTS = {
'gitfs_root': str,
'gitfs_base': str,
'hgfs_remotes': list,
'hgfs_mountpoint': str,
'hgfs_root': str,
'hgfs_base': str,
'hgfs_branch_method': str,
'svnfs_remotes': list,
'svnfs_mountpoint': str,
'svnfs_root': str,
'svnfs_trunk': str,
'svnfs_branches': str,
'svnfs_tags': str,
'ext_pillar': list,
'pillar_version': int,
'pillar_opts': bool,
@ -318,11 +323,16 @@ DEFAULT_MASTER_OPTS = {
'gitfs_root': '',
'gitfs_base': 'master',
'hgfs_remotes': [],
'hgfs_mountpoint': '',
'hgfs_root': '',
'hgfs_base': 'default',
'hgfs_branch_method': 'branches',
'svnfs_remotes': [],
'svnfs_mountpoint': '',
'svnfs_root': '',
'svnfs_trunk': 'trunk',
'svnfs_branches': 'branches',
'svnfs_tags': 'tags',
'ext_pillar': [],
'pillar_version': 2,
'pillar_opts': True,