summaryrefslogtreecommitdiff
path: root/container
diff options
context:
space:
mode:
Diffstat (limited to 'container')
-rw-r--r--container/main.tf3
1 files changed, 2 insertions, 1 deletions
diff --git a/container/main.tf b/container/main.tf
index cc833bb..16429d3 100644
--- a/container/main.tf
+++ b/container/main.tf
@@ -66,7 +66,8 @@ resource "proxmox_lxc" "stagiaire" {
timeout = "5m"
}
inline = [
- "touch terraform_ok"
+ "dnf install -y httpd && systemctl enable --now httpd || true",
+ "apt update && apt install -y apache2 || true"
]
}
}