diff options
| author | jerome <jerome@xlinfo.fr> | 2025-02-12 14:46:02 +0100 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2025-02-12 14:46:02 +0100 |
| commit | 9041e48cd9b37e2bb39328ec21088ab48658f0f7 (patch) | |
| tree | b17c6aa4416e7a4465f0520a7efb65746968dfbc /playbooks/lamp/templates | |
| parent | d2b9d98a830d38348859542e24ae9f389edc4cf1 (diff) | |
| download | kvm-9041e48cd9b37e2bb39328ec21088ab48658f0f7.tar.gz kvm-9041e48cd9b37e2bb39328ec21088ab48658f0f7.zip | |
correction
Diffstat (limited to 'playbooks/lamp/templates')
| -rw-r--r-- | playbooks/lamp/templates/index.j2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/playbooks/lamp/templates/index.j2 b/playbooks/lamp/templates/index.j2 new file mode 100644 index 0000000..29619c2 --- /dev/null +++ b/playbooks/lamp/templates/index.j2 @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<title>{{ansible_distribution}} Apache Web Server</title> +<meta charset="utf-8" /> +</head> +<body> +<h1>{{ansible_distribution}} Apache Web Server</h1> +<h2>Site en Constuction</h2> +{% if lamp_packages is defined %} +<h3>Packages :</h3> +<ul> +{% for item in lamp_packages %} +<li>{{item}}</li> +{% endfor %} +</ul> +{% endif %} +<p>Généré par {{ ansible_distribution }} {{ ansible_distribution_version }}</p> +</body> +</html> |
