summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Marano <zmarano@google.com>2018-01-29 17:41:05 -0800
committerZach Marano <zmarano@google.com>2018-01-29 17:41:05 -0800
commit2be240c41bf531507f50183bdda5dce0b6afc303 (patch)
treef190e22a30f5dad2d81e58ee22d61cfb7f73f856
parenta183285af39153208f373e283f1dc31ba043314f (diff)
parent8ff26d9198e9c60e6c8416e88ce25f19403d99eb (diff)
downloadgoogle-compute-image-packages-2be240c41bf531507f50183bdda5dce0b6afc303.tar.gz
Merge branch 'development'20180129
-rw-r--r--debian/changelog14
-rw-r--r--google_compute_engine_oslogin/Makefile2
-rw-r--r--google_compute_engine_oslogin/packaging/debian8/changelog6
-rw-r--r--google_compute_engine_oslogin/packaging/debian9/changelog6
-rw-r--r--google_compute_engine_oslogin/packaging/debian9/google-compute-engine-oslogin.links2
-rw-r--r--google_compute_engine_oslogin/packaging/rpmbuild/SPECS/google-compute-engine-oslogin.spec2
-rwxr-xr-xgoogle_compute_engine_oslogin/packaging/setup_deb.sh2
-rwxr-xr-xgoogle_compute_engine_oslogin/packaging/setup_rpm.sh2
-rwxr-xr-xgoogle_config/bin/google_set_hostname11
-rwxr-xr-xsetup.py2
-rw-r--r--specs/google-compute-engine.spec2
-rw-r--r--specs/python-google-compute-engine.spec2
12 files changed, 36 insertions, 17 deletions
diff --git a/debian/changelog b/debian/changelog
index 40dc97b..d7feae5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,20 @@
+google-compute-image-packages (2.7.5-1) stable; urgency=low
+
+ * Revert hostname setting change in Debian.
+
+ -- Google Cloud Team <gc-team@google.com> Mon, 29 Jan 2018 12:00:00 -0700
+
+google-compute-image-packages (2.7.4-1) stable; urgency=low
+
+ * Fix hostname setting in Debian.
+
+ -- Google Cloud Team <gc-team@google.com> Mon, 29 Jan 2018 12:00:00 -0700
+
google-compute-image-packages (2.7.3-1) stable; urgency=low
* Improve hostname setting and correctly restart rsyslog.
- -- Google Cloud Team <gc-team@google.com> Thu, 25 Jan 2018 12:00:00 -0700
+ -- Google Cloud Team <gc-team@google.com> Thu, 25 Jan 2018 12:00:00 -0700
google-compute-image-packages (2.7.2-2) stable; urgency=low
diff --git a/google_compute_engine_oslogin/Makefile b/google_compute_engine_oslogin/Makefile
index d1313db..2888139 100644
--- a/google_compute_engine_oslogin/Makefile
+++ b/google_compute_engine_oslogin/Makefile
@@ -4,7 +4,7 @@ BASENAME = oslogin
NAME = google-compute-engine-$(BASENAME)
MAJOR = 1
MINOR = 1
-REVISION = 3
+REVISION = 4
NSS_LIBRARY_NAME = libnss_$(NAME)-$(MAJOR).$(MINOR).$(REVISION).so
NSS_LIBRARY_SONAME = libnss_$(BASENAME).so.2
diff --git a/google_compute_engine_oslogin/packaging/debian8/changelog b/google_compute_engine_oslogin/packaging/debian8/changelog
index 1d2f06f..9f2bbfd 100644
--- a/google_compute_engine_oslogin/packaging/debian8/changelog
+++ b/google_compute_engine_oslogin/packaging/debian8/changelog
@@ -1,3 +1,9 @@
+google-compute-engine-oslogin (1.1.4-1+deb8) unstable; urgency=low
+
+ * Close socket connections when requesting metadata.
+
+ -- Google Cloud Team <gc-team@google.com> Mon, 29 Jan 2018 12:00:00 -0700
+
google-compute-engine-oslogin (1.1.3-1+deb8) unstable; urgency=low
* Change the OS Login uid restriction to allow uid 1000.
diff --git a/google_compute_engine_oslogin/packaging/debian9/changelog b/google_compute_engine_oslogin/packaging/debian9/changelog
index 6a9faa4..0a5b12e 100644
--- a/google_compute_engine_oslogin/packaging/debian9/changelog
+++ b/google_compute_engine_oslogin/packaging/debian9/changelog
@@ -1,3 +1,9 @@
+google-compute-engine-oslogin (1.1.4-1+deb9) unstable; urgency=low
+
+ * Close socket connections when requesting metadata.
+
+ -- Google Cloud Team <gc-team@google.com> Mon, 29 Jan 2018 12:00:00 -0700
+
google-compute-engine-oslogin (1.1.3-1+deb9) unstable; urgency=low
* Change the OS Login uid restriction to allow uid 1000.
diff --git a/google_compute_engine_oslogin/packaging/debian9/google-compute-engine-oslogin.links b/google_compute_engine_oslogin/packaging/debian9/google-compute-engine-oslogin.links
index aa88a24..b37cab6 100644
--- a/google_compute_engine_oslogin/packaging/debian9/google-compute-engine-oslogin.links
+++ b/google_compute_engine_oslogin/packaging/debian9/google-compute-engine-oslogin.links
@@ -1 +1 @@
-/lib/libnss_google-compute-engine-oslogin-1.1.3.so /lib/libnss_oslogin.so.2
+/lib/libnss_google-compute-engine-oslogin-1.1.4.so /lib/libnss_oslogin.so.2
diff --git a/google_compute_engine_oslogin/packaging/rpmbuild/SPECS/google-compute-engine-oslogin.spec b/google_compute_engine_oslogin/packaging/rpmbuild/SPECS/google-compute-engine-oslogin.spec
index 0bc9466..fb980cb 100644
--- a/google_compute_engine_oslogin/packaging/rpmbuild/SPECS/google-compute-engine-oslogin.spec
+++ b/google_compute_engine_oslogin/packaging/rpmbuild/SPECS/google-compute-engine-oslogin.spec
@@ -13,7 +13,7 @@
# limitations under the License.
Name: google-compute-engine-oslogin
-Version: 1.1.3
+Version: 1.1.4
Release: 1%{?dist}
Summary: OS Login Functionality for Google Compute Engine
diff --git a/google_compute_engine_oslogin/packaging/setup_deb.sh b/google_compute_engine_oslogin/packaging/setup_deb.sh
index 771c506..83a0ab6 100755
--- a/google_compute_engine_oslogin/packaging/setup_deb.sh
+++ b/google_compute_engine_oslogin/packaging/setup_deb.sh
@@ -20,7 +20,7 @@
# Run from the top of the source directory.
NAME="google-compute-engine-oslogin"
-VERSION="1.1.3"
+VERSION="1.1.4"
working_dir=${PWD}
diff --git a/google_compute_engine_oslogin/packaging/setup_rpm.sh b/google_compute_engine_oslogin/packaging/setup_rpm.sh
index 94041d2..221bd43 100755
--- a/google_compute_engine_oslogin/packaging/setup_rpm.sh
+++ b/google_compute_engine_oslogin/packaging/setup_rpm.sh
@@ -20,7 +20,7 @@
# Run from the top of the source directory.
NAME="google-compute-engine-oslogin"
-VERSION="1.1.3"
+VERSION="1.1.4"
working_dir=${PWD}
rpm_working_dir=/tmp/rpmpackage/${NAME}-${VERSION}
diff --git a/google_config/bin/google_set_hostname b/google_config/bin/google_set_hostname
index 1db39ce..1d1864e 100755
--- a/google_config/bin/google_set_hostname
+++ b/google_config/bin/google_set_hostname
@@ -37,27 +37,22 @@ fi
# unqualified domain name.
if [ -n "$new_host_name" ]; then
- hostnamectl=$( which hostnamectl 2> /dev/null )
- if [ -x "$hostnamectl" ]; then
- $hostnamectl set-hostname "$new_host_name"
- fi
- # Also set the transient hostname.
hostname "${new_host_name%%.*}"
# If NetworkManager is installed set the hostname with nmcli.
# to resolve issues with NetworkManager resetting the hostname
# to the FQDN on DHCP renew.
- nmcli=$( which nmcli 2> /dev/null )
+ nmcli=$(which nmcli 2> /dev/null)
if [ -x "$nmcli" ]; then
nmcli general hostname "${new_host_name%%.*}"
fi
# Restart rsyslog to update the hostname.
- systemctl=$( which systemctl 2> /dev/null )
+ systemctl=$(which systemctl 2> /dev/null)
if [ -f /etc/init.d/rsyslog ]; then
/etc/init.d/rsyslog restart
elif [ -x "$systemctl" ]; then
- hasrsyslog=$( $systemctl | grep rsyslog | cut -f1 -d' ' )
+ hasrsyslog=$($systemctl | grep rsyslog | cut -f1 -d' ')
if [ ! -z "$hasrsyslog" ]; then
$systemctl -q --no-block restart "$hasrsyslog"
fi
diff --git a/setup.py b/setup.py
index e347252..3eee1cb 100755
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ setuptools.setup(
packages=setuptools.find_packages(),
scripts=glob.glob('scripts/*'),
url='https://github.com/GoogleCloudPlatform/compute-image-packages',
- version='2.7.3',
+ version='2.7.5',
# Entry points create scripts in /usr/bin that call a function.
entry_points={
'console_scripts': [
diff --git a/specs/google-compute-engine.spec b/specs/google-compute-engine.spec
index bc49915..05dbe2e 100644
--- a/specs/google-compute-engine.spec
+++ b/specs/google-compute-engine.spec
@@ -18,7 +18,7 @@
%endif
Name: google-compute-engine
-Version: 2.7.3
+Version: 2.7.5
Release: 1%{?dist}
Summary: Google Compute Engine guest environment.
License: ASL 2.0
diff --git a/specs/python-google-compute-engine.spec b/specs/python-google-compute-engine.spec
index 145d1c9..6ff6ed6 100644
--- a/specs/python-google-compute-engine.spec
+++ b/specs/python-google-compute-engine.spec
@@ -18,7 +18,7 @@
%endif
Name: python-google-compute-engine
-Version: 2.7.3
+Version: 2.7.5
Release: 1%{?dist}
Summary: Google Compute Engine python library
License: ASL 2.0