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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/aws_ec2/scripts/cloudwatch/install/ubuntu.sh +4 -1
- data/lib/aws_ec2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 470632b05ae98e847346203b518d904a1c55dca285aa598d494b3fc8bfbf5e51
|
4
|
+
data.tar.gz: d487775d14d5b2223178cc174af9146b8462e7d340dbc568da3a437ef3f5b078
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7d836b0c97a9d681e40cb1d9621805e3fdc9aced2ad17c2c632247b2bbbc4278bd5fe543b31f76f073b22093e815e2adfaeee90030bbdb7f93e0a6bef3a0358
|
7
|
+
data.tar.gz: 75873cc2bb9b54fdc6d25c132a16e2a8f461e3b1ac327ddac08881e7e014ba5e8b16528e4eadf42a2478dc2e6a2d326f3c5df3a9b31f84ae216d9a4bf6422bd2
|
data/CHANGELOG.md
CHANGED
@@ -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
|
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
|
data/lib/aws_ec2/version.rb
CHANGED