1eff4a436e
Flavour is overloaded in openstack due to it being used by nova. Element seems to have the same feeling of combinability without using a term already in active use in the openstack community. Change-Id: Ia4c028d4062a8f69c66665821c94dd4bcdf06031
17 lines
401 B
Bash
Executable File
17 lines
401 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
# add Percona GPG key
|
|
#gpg --keyserver hkp://keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A
|
|
#gpg -a --export CD2EFD2A | apt-key add -
|
|
|
|
# add Percona repo
|
|
# XXX: autodetect distribution when Percona supports Quantal
|
|
#VER='precise'
|
|
#cat <<EOL > /etc/apt/sources.list.d/percona
|
|
#deb http://repo.percona.com/apt $VER main
|
|
#deb-src http://repo.percona.com/apt $VER main
|
|
#EOL
|