diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-05-12 17:32:53 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-12 17:32:53 +0200 |
commit | a355ee21c15e915f394952abe76703d7865c991b (patch) | |
tree | 468e5b6da5d9833532e51760c29a69cedb641f66 /roles/httpd_pre/meta | |
parent | b1f371ec9d587e3727e85afe34473ed154d1fc48 (diff) | |
download | rules-a355ee21c15e915f394952abe76703d7865c991b.tar.gz |
feat(roles/httpd_pre): add httpd_pre role
Diffstat (limited to 'roles/httpd_pre/meta')
-rw-r--r-- | roles/httpd_pre/meta/main.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/roles/httpd_pre/meta/main.yml b/roles/httpd_pre/meta/main.yml new file mode 100644 index 0000000..df8fb89 --- /dev/null +++ b/roles/httpd_pre/meta/main.yml @@ -0,0 +1,41 @@ +--- + +argument_specs: + main: + short_description: httpd_pre main entrypoint. + options: + + httpd_pre__configuration_file: + type: path + required: true + description: Configuration file + + httpd_pre__configuration_dir: + type: path + required: true + description: Configuration directory + + httpd_pre__chroot_dir: + type: path + required: true + description: Chroot directory + + httpd_pre__passwords_dir: + type: path + required: true + description: Passwords directory + + httpd_pre__sites_dir: + type: path + required: true + description: Sites directory + + httpd_pre__user: + type: str + required: true + description: User + + httpd_pre__group: + type: str + required: true + description: Group |