propellor spin
This commit is contained in:
parent
b9c868dd88
commit
e32408f4e8
|
@ -172,11 +172,9 @@ hosts = -- (o) `
|
||||||
& Apt.installed ["git-annex"]
|
& Apt.installed ["git-annex"]
|
||||||
& alias "podcatcher.kitenet.net"
|
& alias "podcatcher.kitenet.net"
|
||||||
|
|
||||||
-- Joey runs github-backup here.
|
& JoeySites.githubBackup
|
||||||
& Apt.installed ["github-backup", "moreutils"]
|
|
||||||
& let f = "/home/joey/.github-keys"
|
& Docker.docked hosts "volatagex"
|
||||||
in File.hasPrivContent f
|
|
||||||
`onChange` File.ownerGroup f "joey" "joey"
|
|
||||||
|
|
||||||
--' __|II| ,.
|
--' __|II| ,.
|
||||||
---- __|II|II|__ ( \_,/\
|
---- __|II|II|__ ( \_,/\
|
||||||
|
@ -225,6 +223,15 @@ hosts = -- (o) `
|
||||||
, let gitannexdir = GitAnnexBuilder.homedir </> "git-annex"
|
, let gitannexdir = GitAnnexBuilder.homedir </> "git-annex"
|
||||||
in GitAnnexBuilder.androidContainer dockerImage "android-git-annex" doNothing gitannexdir
|
in GitAnnexBuilder.androidContainer dockerImage "android-git-annex" doNothing gitannexdir
|
||||||
& Docker.volume ("/home/joey/src/git-annex:" ++ gitannexdir)
|
& Docker.volume ("/home/joey/src/git-annex:" ++ gitannexdir)
|
||||||
|
|
||||||
|
-- temp for an aqquantance
|
||||||
|
, standardContainer "voltagex" Stable "amd64"
|
||||||
|
& Docker.publish "22022:22"
|
||||||
|
& Apt.serviceInstalledRunning "ssh"
|
||||||
|
& Ssh.permitRootLogin True
|
||||||
|
& Ssh.passwordAuthentication True
|
||||||
|
& User.hasSomePassword "root"
|
||||||
|
|
||||||
] ++ monsters
|
] ++ monsters
|
||||||
|
|
||||||
-- This is my standard system setup.
|
-- This is my standard system setup.
|
||||||
|
|
|
@ -330,3 +330,11 @@ kiteShellBox = propertyList "kitenet.net shellinabox"
|
||||||
`onChange` Service.restarted "shellinabox"
|
`onChange` Service.restarted "shellinabox"
|
||||||
, Service.running "shellinabox"
|
, Service.running "shellinabox"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
githubBackup :: Property
|
||||||
|
githubBackup = propertyList "github-backup box"
|
||||||
|
[ Apt.installed ["github-backup", "moreutils"]
|
||||||
|
, let f = "/home/joey/.github-keys"
|
||||||
|
in File.hasPrivContent f
|
||||||
|
`onChange` File.ownerGroup f "joey" "joey"
|
||||||
|
]
|
||||||
|
|
Loading…
Reference in New Issue