forked from rundeck/rundeck
-
Notifications
You must be signed in to change notification settings - Fork 0
Rundeck repo
gschueler edited this page Jun 22, 2012
·
2 revisions
The repo.rundeck.org site is stored in the gh-pages branch of dtolabs/repo.rundeck.org.
The yum repository defines the release repo at http://repo.rundeck.org/repo/rundeck/1/release
We will add a new set of rpms to the repo directory in the gh-pages branch, and use createrepo
to update it.
-
Add the rundeck-X.Y-1.1.noarch.rpm and rundeck-config-X.Y-1.1.noarch.rpm to the gh-pages branch
cd gh-pages cp rundeck-X.Y-1.1.noarch.rpm repo/rundeck/1/release cp rundeck-config-X.Y-1.1.noarch.rpm repo/rundeck/1/release
-
On Linux, use createrepo:
createrepo repo/rundeck/1/release
-
Commit and push the changes
git add repo/rundeck/1/release git commit -m "Added X.Y rpms to yum repo" git push origin gh-pages