diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/HostingProvider/Exoscale.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Propellor/Property/HostingProvider/Exoscale.hs b/src/Propellor/Property/HostingProvider/Exoscale.hs index f7d676d0..a123c54a 100644 --- a/src/Propellor/Property/HostingProvider/Exoscale.hs +++ b/src/Propellor/Property/HostingProvider/Exoscale.hs @@ -18,7 +18,9 @@ distroKernel :: Architecture -> Property DebianLike distroKernel arch = combineProperties "boots distro kernel" $ props & Grub.installed' Grub.PC & Apt.installed ["linux-image-" ++ arch] - & Grub.boots "/dev/vda" + -- only these ones are not idempotent so need flag file & flagFile - (Grub.mkConfig `before` Reboot.now) + (Grub.boots "/dev/vda" + `before` Grub.mkConfig + `before` Reboot.now) "/etc/propellor-distro-kernel" |
