Skip to content

Commit

Permalink
Fixes #7702: Create files to hold release informations
Browse files Browse the repository at this point in the history
  • Loading branch information
peckpeck committed Dec 30, 2015
1 parent b6f7bd0 commit 4fe4c57
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
42 changes: 42 additions & 0 deletions release-data/distributions.cson
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# List distribution properties

# Canonical names
debian = {
alias = [ ]
package_format = "dpkg"
}

ubuntu = {
alias = [ ]
package_format = "dpkg"
}

rhel = {
alias = [ "redhat", "centos" ]
package_format = "rpm"
}

sles = {
alias = [ "suse" ]
package_format = "rpm"
}

aix = {
alias = [ ]
package_format = "rpm"
}

windows = {
alias = [ ]
package_format = ""
}

android = {
alias = [ ]
package_format = ""
}

freebsd = {
alias = [ ]
package_format = ""
}
23 changes: 23 additions & 0 deletions release-data/rudder-3.2.cson
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Release data file

# Supported architecture for each distribution
ARCHITECTURE = { "debian-5": [ "i386", "amd64" ],
"debian-6": [ "i386", "amd64" ],
"rhel-7": [ "amd64" ],
}

# Packages that are built
ROLES = { "debian-5": [ "agent-allinone" ],
"debian-6": [ "agent-allinone", "agent-thin", "relay", "server" ],
"rhel-7": [ "agent-allinone", "agent-thin", "relay", "server" ],
}

PACKAGES = { "agent-allinone" : [ "rudder-agent" ],
"agent-thin" : [ "rudder-agent-thin" ],
"relay" : [ "rudder-server-relay" ],
"server" : [ "rudder-server-root", "rudder-jetty" ],
}

# Packages that are architecture dependant (others are independant)
ARCH_DEPENDANT_PACKAGES = [ "agent" ]

0 comments on commit 4fe4c57

Please sign in to comment.