diff options
| author | Joey Hess <joeyh@joeyh.name> | 2018-04-12 16:15:51 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2018-04-12 16:15:51 -0400 |
| commit | 1d96b87f02a80a35bc1e90a3ccdfaea346e3b179 (patch) | |
| tree | c370ecb6fe91aa7059be5eef9b28c376ed3b8c2c | |
| parent | 0e5bbbd86ed66e982e0b719c2ea8bd695da75cd7 (diff) | |
propellor spin
| -rw-r--r-- | joeyconfig.hs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/joeyconfig.hs b/joeyconfig.hs index 11f701ff..a08accf7 100644 --- a/joeyconfig.hs +++ b/joeyconfig.hs @@ -106,6 +106,9 @@ darkstar = host "darkstar.kitenet.net" $ props -- & imageBuiltFor honeybee -- (RawDiskImage "/srv/honeybee.img") -- (Debootstrapped mempty) + & imageBuiltFor banana + (RawDiskImage "/srv/banana.img") + (Debootstrapped mempty) gnu :: Host gnu = host "gnu.kitenet.net" $ props @@ -182,6 +185,17 @@ orca = host "orca.kitenet.net" $ props & Systemd.nspawned (GitAnnexBuilder.androidAutoBuilderContainer (Cron.Times "1 1 * * *") "3h") +banana :: Host +banana = host "banana.kitenet.net" $ props + & standardSystem Testing ARMHF + [ "Banana pi dev board." ] + & lemaker_Banana_Pi + & hasPartition + ( partition EXT4 + `mountedAt` "/" + `setSize` MegaBytes 200 + ) + honeybee :: Host honeybee = host "honeybee.kitenet.net" $ props & standardSystem Testing ARMHF |
