propellor spin
This commit is contained in:
parent
2231fce6bf
commit
3aff991553
|
@ -10,7 +10,7 @@ import qualified Propellor.Property.File as File
|
||||||
-- with an entry for 127.0.1.1, which is standard at least on Debian
|
-- with an entry for 127.0.1.1, which is standard at least on Debian
|
||||||
-- to set the FDQN (127.0.0.1 is localhost).
|
-- to set the FDQN (127.0.0.1 is localhost).
|
||||||
set :: HostName -> Property
|
set :: HostName -> Property
|
||||||
set hostname = propertyList desc go
|
set hostname = combineProperties desc go
|
||||||
`onChange` cmdProperty "hostname" [host]
|
`onChange` cmdProperty "hostname" [host]
|
||||||
where
|
where
|
||||||
desc = "hostname " ++ hostname
|
desc = "hostname " ++ hostname
|
||||||
|
|
|
@ -45,7 +45,7 @@ host hostname@"orca.kitenet.net" = standardSystem Unstable $ props
|
||||||
& Docker.configured
|
& Docker.configured
|
||||||
& Apt.buildDep ["git-annex"]
|
& Apt.buildDep ["git-annex"]
|
||||||
& Docker.docked container hostname "amd64-git-annex-builder"
|
& Docker.docked container hostname "amd64-git-annex-builder"
|
||||||
! Docker.docked container hostname "i386-git-annex-builder"
|
& Docker.docked container hostname "i386-git-annex-builder"
|
||||||
& Docker.garbageCollected
|
& Docker.garbageCollected
|
||||||
-- My laptop
|
-- My laptop
|
||||||
host _hostname@"darkstar.kitenet.net" = Just $ props
|
host _hostname@"darkstar.kitenet.net" = Just $ props
|
||||||
|
|
Loading…
Reference in New Issue