Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Oct 2017 22:11:30 +0000 (UTC)
From:      Richard Gallamore <ultima@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r452169 - in head/sysutils/py-google-compute-engine: . files
Message-ID:  <201710152211.v9FMBUap047033@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ultima
Date: Sun Oct 15 22:11:30 2017
New Revision: 452169
URL: https://svnweb.freebsd.org/changeset/ports/452169

Log:
  Fixed ntpd starting too early causing other services to fail at start.
  Fixed error when stopping services.
  
  PR:		222197
  Submitted by:	Helen Koike (maintainer)
  Reported by:	Vick Khera
  MFH:		2017Q4

Modified:
  head/sysutils/py-google-compute-engine/Makefile
  head/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in
  head/sysutils/py-google-compute-engine/files/google_instance_setup.in
  head/sysutils/py-google-compute-engine/files/google_network_setup.in

Modified: head/sysutils/py-google-compute-engine/Makefile
==============================================================================
--- head/sysutils/py-google-compute-engine/Makefile	Sun Oct 15 22:02:21 2017	(r452168)
+++ head/sysutils/py-google-compute-engine/Makefile	Sun Oct 15 22:11:30 2017	(r452169)
@@ -2,7 +2,7 @@
 
 PORTNAME=	google-compute-engine
 PORTVERSION=	2.4.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in
==============================================================================
--- head/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in	Sun Oct 15 22:02:21 2017	(r452168)
+++ head/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in	Sun Oct 15 22:11:30 2017	(r452169)
@@ -4,7 +4,7 @@
 #
 # PROVIDE: google_clock_skew_daemon
 # BEFORE: LOGIN
-# REQUIRE: NETWORKING syslogd google_instance_setup google_network_setup
+# REQUIRE: NETWORKING syslogd ntpd google_instance_setup google_network_setup
 # KEYWORD: shutdown
 #
 # google_clock_skew_daemon_enable (bool): Set to NO by default.

Modified: head/sysutils/py-google-compute-engine/files/google_instance_setup.in
==============================================================================
--- head/sysutils/py-google-compute-engine/files/google_instance_setup.in	Sun Oct 15 22:02:21 2017	(r452168)
+++ head/sysutils/py-google-compute-engine/files/google_instance_setup.in	Sun Oct 15 22:11:30 2017	(r452169)
@@ -14,6 +14,7 @@
 
 name="google_instance_setup"
 rcvar="google_instance_setup_enable"
+stop_cmd=":"
 
 load_rc_config "${name}"
 

Modified: head/sysutils/py-google-compute-engine/files/google_network_setup.in
==============================================================================
--- head/sysutils/py-google-compute-engine/files/google_network_setup.in	Sun Oct 15 22:02:21 2017	(r452168)
+++ head/sysutils/py-google-compute-engine/files/google_network_setup.in	Sun Oct 15 22:11:30 2017	(r452169)
@@ -14,6 +14,7 @@
 
 name="google_network_setup"
 rcvar="google_network_setup_enable"
+stop_cmd=":"
 
 load_rc_config "${name}"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710152211.v9FMBUap047033>