[hopem,r=]

Adds missing 'key' config option required when using
'source' with private PPAs.

Closes-Bug: 1444412
This commit is contained in:
Edward Hope-Morley 2015-04-15 12:01:49 +01:00
parent 99bb8eaabe
commit 5532827444
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,12 @@ options:
type: string
default:
description: Package install location for Percona XtraDB Cluster (defaults to distro for >= 14.04)
key:
type: string
default:
description: |
Key ID to import to the apt keyring to support use with arbitary source
configuration from outside of Launchpad archives or PPA's.
dataset-size:
default: '80%'
type: string

View File

@ -81,7 +81,7 @@ def install():
lsb_release()['DISTRIB_CODENAME'] < 'trusty':
setup_percona_repo()
elif config('source') is not None:
add_source(config('source'))
add_source(config('source'), config('key'))
configure_mysql_root_password(config('root-password'))
db_helper = get_db_helper()