Skip to content
gschueler edited this page Jun 22, 2012 · 2 revisions

About

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.

  1. 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
    
  2. On Linux, use createrepo:

     createrepo repo/rundeck/1/release
    
  3. 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