aws-ec2 1.4.4 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: caac59da7ff1ea2c83844e88b669b3caf2593b59b12caf6c18d1816849a9d6a5
4
- data.tar.gz: 9f1490cc65e80777efd29cb97da53bedd5109d3c504c9a08bf2f638fcb6da17c
3
+ metadata.gz: 470632b05ae98e847346203b518d904a1c55dca285aa598d494b3fc8bfbf5e51
4
+ data.tar.gz: d487775d14d5b2223178cc174af9146b8462e7d340dbc568da3a437ef3f5b078
5
5
  SHA512:
6
- metadata.gz: 7468e5b0d35b5fa2e1cbe357da384ea425ea49167d7d3069a9772e85925b717ec2835a1585e1be6ad9eadb87f72e593cfab81bc7e2ca0de4ce830277e2b440a3
7
- data.tar.gz: 8d9061387cc4be3ea55fea1623c3208734bbd1721efbb87acba774743395dfe25d3d784886bc5a22011978728ce5c699a9bc64b68f2f8d6577d5366f8941881d
6
+ metadata.gz: d7d836b0c97a9d681e40cb1d9621805e3fdc9aced2ad17c2c632247b2bbbc4278bd5fe543b31f76f073b22093e815e2adfaeee90030bbdb7f93e0a6bef3a0358
7
+ data.tar.gz: 75873cc2bb9b54fdc6d25c132a16e2a8f461e3b1ac327ddac08881e7e014ba5e8b16528e4eadf42a2478dc2e6a2d326f3c5df3a9b31f84ae216d9a4bf6422bd2
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [1.4.5]
7
+ - fix cloudwatch python install for ubuntu
8
+
6
9
  ## [1.4.4]
7
10
  - add AWS_EC2_REGION env to set the region for the cloudwatch log displayed url
8
11
 
@@ -4,7 +4,10 @@
4
4
 
5
5
  REGION=$(curl -s 169.254.169.254/latest/meta-data/placement/availability-zone | sed s'/.$//')
6
6
 
7
- type python || apt-get install -y python-pip
7
+ if ! type python ; then
8
+ apt-get update
9
+ apt-get install -y python-pip
10
+ fi
8
11
 
9
12
  # Install awslogs and the jq JSON parser
10
13
  curl -s https://s3.amazonaws.com/aws-cloudwatch/downloads/latest/awslogs-agent-setup.py -O
@@ -1,3 +1,3 @@
1
1
  module AwsEc2
2
- VERSION = "1.4.4"
2
+ VERSION = "1.4.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.4
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen