summaryrefslogtreecommitdiff
path: root/lib/spack/spack/schema/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/schema/config.py')
-rw-r--r--lib/spack/spack/schema/config.py16
1 files changed, 3 insertions, 13 deletions
diff --git a/lib/spack/spack/schema/config.py b/lib/spack/spack/schema/config.py
index 31d4b8a8a8..e51fa69afe 100644
--- a/lib/spack/spack/schema/config.py
+++ b/lib/spack/spack/schema/config.py
@@ -49,7 +49,6 @@ schema = {
},
'module_roots': {
'type': 'object',
- 'default': {},
'additionalProperties': False,
'properties': {
'tcl': {'type': 'string'},
@@ -59,18 +58,9 @@ schema = {
},
'source_cache': {'type': 'string'},
'misc_cache': {'type': 'string'},
- 'verify_ssl': {
- 'type': 'boolean',
- 'default': True,
- },
- 'checksum': {
- 'type': 'boolean',
- 'default': True,
- },
- 'dirty': {
- 'type': 'boolean',
- 'default': False,
- },
+ 'verify_ssl': {'type': 'boolean'},
+ 'checksum': {'type': 'boolean'},
+ 'dirty': {'type': 'boolean'},
}
},
},