propellor spin
This commit is contained in:
parent
26a4c164e4
commit
b8be8c244e
|
@ -358,15 +358,24 @@ githubBackup = propertyList "github-backup box"
|
||||||
, "cd github"
|
, "cd github"
|
||||||
, ". $HOME/.github-keys"
|
, ". $HOME/.github-keys"
|
||||||
, "github-backup joeyh"
|
, "github-backup joeyh"
|
||||||
] ++ map gitriddance mirrors
|
] ++ map gitriddance githubMirrors
|
||||||
]
|
]
|
||||||
where
|
where
|
||||||
gitriddance (r, msg) = "(cd " ++ r ++ " && gitriddance " ++ shellEscape msg ++ ")"
|
gitriddance (r, msg) = "(cd " ++ r ++ " && gitriddance " ++ shellEscape msg ++ ")"
|
||||||
-- these repos are only mirrored on github, I don't want
|
|
||||||
-- all the proprietary features
|
|
||||||
mirrors =
|
-- these repos are only mirrored on github, I don't want
|
||||||
[ ("ikiwiki", "please submit changes to http://ikiwiki.info/todo/ instead of using github pull requests")
|
-- all the proprietary features
|
||||||
]
|
githubMirrors :: [(String, String)]
|
||||||
|
githubMirrors =
|
||||||
|
[ ("ikiwiki", plzuseurl "http://ikiwiki.info/todo/")
|
||||||
|
, ("git-annex", plzuseurl "http://git-annex.branchable.com/todo/")
|
||||||
|
, ("myrepos", plzuseurl "http://myrepos.branchable.com/todo/")
|
||||||
|
, ("propellor", plzuseurl "http://propellor.branchable.com/todo/")
|
||||||
|
, ("etckeeper", plzuseurl "http://etckeeper.branchable.com/todo/")
|
||||||
|
]
|
||||||
|
where
|
||||||
|
plzuseurl u = "please submit changes to " ++ u ++ " instead of using github pull requests"
|
||||||
|
|
||||||
rsyncNetBackup :: [Host] -> Property
|
rsyncNetBackup :: [Host] -> Property
|
||||||
rsyncNetBackup hosts = Cron.niceJob "rsync.net copied in daily" "30 5 * * *"
|
rsyncNetBackup hosts = Cron.niceJob "rsync.net copied in daily" "30 5 * * *"
|
||||||
|
|
Loading…
Reference in New Issue