appbundle-updater 0.2.9 → 0.2.10
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 +7 -0
- data/bin/appbundle-updater +1 -0
- 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: 8c305238e09ea5087cb50f25cd6d512951a6a7ca
|
|
4
|
+
data.tar.gz: 525815c7435a38bc24536fc31b942b50d6280202
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac04808fd5a9982dbc674ecfda207b6e80ed7ad48d888d495caaf7fefc71538064c9131f69f1f61593cd323f6aed1bdd0701fac20d21b01425c7fcdb8d3f3666
|
|
7
|
+
data.tar.gz: 1e23ce09ad51e6f7a0e0690c1c30cf14c69425e3cd0e744278a67845aa54d9da226f1eadde31ae848f0504cb194132bb36549abb2830899badeb956e9a7be8ef
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v0.2.9](https://github.com/chef/appbundle-updater/tree/v0.2.9) (2016-01-19)
|
|
4
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.8...v0.2.9)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- fix gcc/build-essential install to not prompt [\#13](https://github.com/chef/appbundle-updater/pull/13) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
9
|
+
|
|
3
10
|
## [v0.2.8](https://github.com/chef/appbundle-updater/tree/v0.2.8) (2016-01-19)
|
|
4
11
|
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.7...v0.2.8)
|
|
5
12
|
|
data/bin/appbundle-updater
CHANGED
|
@@ -65,6 +65,7 @@ def install_package_dependencies
|
|
|
65
65
|
case `ohai platform_family`
|
|
66
66
|
when /debian/
|
|
67
67
|
ENV["DEBIAN_FRONTEND"] = "noninteractive"
|
|
68
|
+
run("apt-get -y update")
|
|
68
69
|
run("apt-get -q -y install build-essential git")
|
|
69
70
|
when /fedora/, /rhel/
|
|
70
71
|
run("yum -y install gcc make git")
|