summaryrefslogtreecommitdiff
path: root/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2014-04-01 18:28:35 -0400
committerJoey Hess2014-04-01 18:28:35 -0400
commit8bdc8d189cda9962f821d7955e41658488d81346 (patch)
tree3459bd11b529c73e852bba0acc5978ef5c8b103c /Propellor/Property
parent6d425cba7cfd5e92a3b7f3742c382f25dcb33bba (diff)
propellor spin
Diffstat (limited to 'Propellor/Property')
-rw-r--r--Propellor/Property/SiteSpecific/GitAnnexBuilder.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs b/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
index 4ccaa34f..3c86b33a 100644
--- a/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
+++ b/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
@@ -23,10 +23,10 @@ builder arch crontimes = combineProperties "gitannexbuilder"
, serviceRunning "cron" `requires` Apt.installed ["cron"]
, User.accountFor builduser
, check (lacksdir builddir) $ userScriptProperty builduser
- [ "git clone https://github.com/joeyh/gitbuilder.git"
+ [ "git clone git://git.kitenet.net/gitannexbuilder"
, "cd gitbuilder"
, "git checkout " ++ map toLower (show arch)
- , "git clone https://git-annex.branchable.com/ build"
+ , "git clone git://git-annex.branchable.com/ build"
]
`describe` "gitbuilder setup"
, Cron.niceJob "gitannexbuilder" crontimes builduser "~/gitbuilder" "git pull ; ./autobuild"