summaryrefslogtreecommitdiff
path: root/config-joey.hs
diff options
context:
space:
mode:
authorJoey Hess2014-12-05 16:22:11 -0400
committerJoey Hess2014-12-05 16:22:11 -0400
commitbf9284d05cf29e4058ca6007486fbe261b0e0769 (patch)
tree55ef76ec519098813d8c1bc86222f5b22b65fa79 /config-joey.hs
parent97e9433f1b719cc13fc524ee0399d0b51af5a5c1 (diff)
I have now successfully used propellor to convert a Fedora system into a bootable and fully working Debian system
Diffstat (limited to 'config-joey.hs')
-rw-r--r--config-joey.hs11
1 files changed, 10 insertions, 1 deletions
diff --git a/config-joey.hs b/config-joey.hs
index a1ea21d1..b41af4a2 100644
--- a/config-joey.hs
+++ b/config-joey.hs
@@ -57,8 +57,17 @@ testvm = host "testvm.kitenet.net"
& os (System (Debian Unstable) "amd64")
& OS.cleanInstallOnce (OS.Confirmed "testvm.kitenet.net")
`onChange` propertyList "fixing up after clean install"
- [ OS.preserveRootSshAuthorized
+ [ User.shadowConfig True
+ , OS.preserveRootSshAuthorized
+ , OS.preserveResolvConf
+ , Apt.update
+ , Grub.boots "/dev/sda"
+ `requires` Grub.installed Grub.PC
]
+ & Hostname.sane
+ & Hostname.searchDomain
+ & Apt.installed ["linux-image-amd64"]
+ & Apt.installed ["ssh"]
darkstar :: Host
darkstar = host "darkstar.kitenet.net"