Skip to content

Commit

Permalink
Merge pull request #13 from chuckbutler/openstack-oil-fix
Browse files Browse the repository at this point in the history
Changed `source` config option to `bin-source` to prevent mysterious issue
  • Loading branch information
whitmo committed Jul 24, 2015
2 parents 01d5d00 + 11e5370 commit 489ddb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
options:
source:
bin-source:
type: string
default: https://github.com/coreos/etcd/releases/download/v2.0.11/etcd-v2.0.11-linux-amd64.tar.gz
description: Location of etcd binary release to fetch
Expand Down
2 changes: 1 addition & 1 deletion hooks/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def id_generator(size=6, chars=string.ascii_uppercase + string.digits):


def install_etcd():
source = hookenv.config('source')
source = hookenv.config('bin-source')
sha = hookenv.config('source-sum')

unpack = fetch.install_remote(source, 'fetched', sha)
Expand Down

0 comments on commit 489ddb7

Please sign in to comment.