Skip to content

Commit cdd583e

Browse files
committed
fix(modules/debian): added systemd-sysext activation to final module script
1 parent 5e1f56d commit cdd583e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/debian/cloudinit.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ data "cloudinit_config" "user_data" {
7575
"systemctl daemon-reload",
7676
"systemctl enable qemu-guest-agent --now",
7777
"systemctl restart --no-block systemd-resolved systemd-networkd",
78-
# "systemctl enable --now systemd-sysext",
78+
"systemctl enable --now systemd-sysext",
7979
],
8080
var.startup_script.inline,
8181
["touch /etc/cloud/cloud-init.disabled"]

modules/debian/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ variable "substrates" {
162162
mode = optional(string, "755")
163163
owner = optional(string, "root")
164164
group = optional(string, "root")
165-
tags = optional(string, "ignition") # only ignition is specified for backward compatibility
165+
tags = optional(string, "cloud-init") # only ignition is specified for backward compatibility
166166
})), [])
167167
install = object({
168168
systemd_units = list(object({

0 commit comments

Comments
 (0)