8cfa2aa390
- brackets - braces - colon - commas - comments - document-end - document-start - empty-lines - hyphens - indentation - new-line-at-end-of-file - new-lines - octal-values - trailing-spaces with corresponding code adjustment. Also add yamllint.conf under the check. Change-Id: Ie6251c9063c9c99ebe7c6db54c65d45d6ee7a1d4
27 lines
571 B
YAML
27 lines
571 B
YAML
---
|
|
conf:
|
|
software:
|
|
apache2:
|
|
binary: apache2ctl
|
|
start_parameters: -DFOREGROUND -k start
|
|
site_dir: /etc/apache2/vhosts.d
|
|
conf_dir: /etc/apache2/conf.d
|
|
a2enmod:
|
|
- version
|
|
security: |
|
|
<Directory "/var/www">
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
<IfModule !mod_access_compat.c>
|
|
Require all granted
|
|
</IfModule>
|
|
<IfModule mod_access_compat.c>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|
|
nova:
|
|
DEFAULT:
|
|
mkisofs_cmd: mkisofs
|
|
...
|