diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-01-03 10:47:29 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-01-03 10:47:29 -0400 |
| commit | d996522663e3ffdd7f616aa929763d022be1fb14 (patch) | |
| tree | 4d6838db7e00ca41ebb5b8c6c5a555d5de7d0b38 /joeyconfig.hs | |
| parent | 50d8edf7269cfc2b30f386a23d96fc854039ee51 (diff) | |
propellor spin
Diffstat (limited to 'joeyconfig.hs')
| -rw-r--r-- | joeyconfig.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/joeyconfig.hs b/joeyconfig.hs index 549fdcf9..28c21f3c 100644 --- a/joeyconfig.hs +++ b/joeyconfig.hs @@ -13,6 +13,7 @@ import qualified Propellor.Property.Cron as Cron import qualified Propellor.Property.Sudo as Sudo import qualified Propellor.Property.User as User import qualified Propellor.Property.Hostname as Hostname +import qualified Propellor.Property.Fstab as Fstab import qualified Propellor.Property.Tor as Tor import qualified Propellor.Property.Dns as Dns import qualified Propellor.Property.OpenId as OpenId @@ -186,7 +187,13 @@ oyster = host "oyster.kitenet.net" $ props baleen :: Host baleen = host "baleen.kitenet.net" $ props & standardSystem Unstable X86_64 [ "New git-annex build box." ] + -- Not on public network; ssh access via bounce host. + & ipv4 "138.38.77.40" + + -- The root filesystem content may be lost if the VM is resized. + -- /dev/vdb contains persistent storage. + & Fstab.mounted "auto" "/dev/vdb" "/var/lib/container" mempty & Apt.unattendedUpgrades & Postfix.satellite |
