summaryrefslogtreecommitdiff
path: root/config-joey.hs
diff options
context:
space:
mode:
authorJoey Hess2014-11-21 15:55:27 -0400
committerJoey Hess2014-11-21 15:55:27 -0400
commit9e611d87cd95999eb6b3e5e7f6c855f7c092f57c (patch)
treebea58430eeb0ab69286d95c6dd57795d46e7e04b /config-joey.hs
parentfbce215f3381b36df64c0e268bb816b1b0a4fd0d (diff)
add debootstrap parameters
Diffstat (limited to 'config-joey.hs')
-rw-r--r--config-joey.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-joey.hs b/config-joey.hs
index a12544df..2971c1a2 100644
--- a/config-joey.hs
+++ b/config-joey.hs
@@ -86,12 +86,12 @@ clam = standardSystem "clam.kitenet.net" Unstable "amd64"
& Systemd.nspawned meow
meow :: Systemd.Container
-meow = Systemd.container "meow" (System (Debian Unstable) "amd64")
+meow = Systemd.container "meow" (Chroot.debootstrapped (System (Debian Unstable) "amd64") mempty)
& Apt.serviceInstalledRunning "uptimed"
& alias "meow.kitenet.net"
testChroot :: Chroot.Chroot
-testChroot = Chroot.chroot "/tmp/chroot" (System (Debian Unstable) "amd64")
+testChroot = Chroot.debootstrapped (System (Debian Unstable) "amd64") mempty "/tmp/chroot"
& File.hasContent "/foo" ["hello"]
orca :: Host