diff options
author | Kim Wittenburg <codello@wittenburg.kim> | 2021-01-01 13:58:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 14:58:15 +0200 |
commit | 3980057ce140ea6896cd3f7cd4299cfd29cf234a (patch) | |
tree | 8b59b13a9e9d69773aec5d43bd51825c879e6792 /config | |
parent | 27c317f83d8e393254b6766b34fdf8d29148ea8f (diff) | |
download | vyos-cloud-init-3980057ce140ea6896cd3f7cd4299cfd29cf234a.tar.gz vyos-cloud-init-3980057ce140ea6896cd3f7cd4299cfd29cf234a.zip |
T2116: Enable write_files module
The `write_files` module allows to provides files to the system at deployment. This can be useful for situations when they are required to make a configuration valid, for example - security keys, certificates, etc.
Diffstat (limited to 'config')
-rw-r--r-- | config/cloud.cfg.d/10_vyos.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/cloud.cfg.d/10_vyos.cfg b/config/cloud.cfg.d/10_vyos.cfg index da03d822..d4415126 100644 --- a/config/cloud.cfg.d/10_vyos.cfg +++ b/config/cloud.cfg.d/10_vyos.cfg @@ -20,11 +20,11 @@ cloud_init_modules: # The modules that run in the 'config' stage cloud_config_modules: - vyos + - write_files - vyos_userdata # The modules that run in the 'final' stage -cloud_final_modules: - - runcmd +cloud_final_modules: [] # System and/or distro specific settings # (not accessible to handlers/transforms) |