anvil/conf/pkgs/db.json

60 lines
1.8 KiB
JSON

# This is a extended json package definition file
# We allow simple comments (lines starting with a hash symbol)
{
# This is currently our "master" repo set with versions
# that we are trying to align other distributions with.
# The versions should at least be major + minor!
"ubuntu-oneiric": {
"mysql-client-5.1": {
"version": "5.1*",
"removable": true
},
"mysql-server-core-5.1": {
"version": "5.1*",
"removable": true
},
"mysql-common": {
"version": "5.1*",
"removable": true
},
"mysql-server-5.1": {
"version": "5.1*",
"removable": true,
"pre-install": [
{
# This apparently is a action needed for ubuntu/debian to set the password to something known....
"run_as_root": true,
"cmd": [
"debconf-set-selections"
],
"stdin": [
"mysql-server-5.1 mysql-server/root_password password %PASSWORD%",
"mysql-server-5.1 mysql-server/root_password_again password %PASSWORD%",
"mysql-server-5.1 mysql-server/start_on_boot boolean %BOOT_START%"
]
}
]
}
},
"rhel-6": {
"mysql-server": {
"version": "5.1*",
"removable": true
},
"mysql": {
"version": "5.1*",
"removable": true
}
},
"fedora-16": {
"mysql-server": {
"version": "5.5*",
"removable": true
},
"mysql": {
"version": "5.5*",
"removable": true
}
}
}