appbundle-updater 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -3
- data/bin/appbundle-updater +3 -2
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c6ecf6d89cd8801d06690769f8f46892fad91b8
|
|
4
|
+
data.tar.gz: 8c8303a2f0b9bf6f18c60849b7494a950e1d8480
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6149ec7b63073ce9e9503563228c8e167720253a437c7792611b231c19218f313a8ef7b02c577de4733991936c27b83ef8d233ca43a05032eddefa3475005460
|
|
7
|
+
data.tar.gz: 39904219eb570316377c42c1d97f4e1172b63e5a4648e142a95517cb87e56c6821eec01f16118062570b12776430cf399e864d17cc5926b3711224668b078462
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
4
|
-
|
|
5
|
-
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.7...HEAD)
|
|
3
|
+
## [v0.2.8](https://github.com/chef/appbundle-updater/tree/v0.2.8) (2016-01-19)
|
|
4
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.7...v0.2.8)
|
|
6
5
|
|
|
7
6
|
**Merged pull requests:**
|
|
8
7
|
|
|
8
|
+
- install compilers and git on rhel/debian [\#12](https://github.com/chef/appbundle-updater/pull/12) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
9
9
|
- fix for chef-12.6.0 and version bump [\#11](https://github.com/chef/appbundle-updater/pull/11) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
10
10
|
|
|
11
11
|
## [v0.2.7](https://github.com/chef/appbundle-updater/tree/v0.2.7) (2015-12-30)
|
data/bin/appbundle-updater
CHANGED
|
@@ -64,9 +64,10 @@ def install_package_dependencies
|
|
|
64
64
|
banner("Installing Packages")
|
|
65
65
|
case `ohai platform_family`
|
|
66
66
|
when /debian/
|
|
67
|
-
|
|
67
|
+
ENV["DEBIAN_FRONTEND"] = "noninteractive"
|
|
68
|
+
run("apt-get -q -y install build-essential git")
|
|
68
69
|
when /fedora/, /rhel/
|
|
69
|
-
run("yum install gcc make git")
|
|
70
|
+
run("yum -y install gcc make git")
|
|
70
71
|
else
|
|
71
72
|
puts "i do not know how to install compilers and git on this platform..."
|
|
72
73
|
end
|