From owner-svn-ports-all@freebsd.org Tue Oct 24 17:16:23 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74106E53452; Tue, 24 Oct 2017 17:16:23 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DE8A67C52; Tue, 24 Oct 2017 17:16:23 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9OHGMwx061514; Tue, 24 Oct 2017 17:16:22 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9OHGMeC061510; Tue, 24 Oct 2017 17:16:22 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201710241716.v9OHGMeC061510@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Tue, 24 Oct 2017 17:16:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r452788 - in branches/2017Q4/sysutils/py-google-compute-engine: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in branches/2017Q4/sysutils/py-google-compute-engine: . files X-SVN-Commit-Revision: 452788 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Oct 2017 17:16:23 -0000 Author: ultima Date: Tue Oct 24 17:16:21 2017 New Revision: 452788 URL: https://svnweb.freebsd.org/changeset/ports/452788 Log: MFH: r452169 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 Approved by: portmgr (swills) Modified: branches/2017Q4/sysutils/py-google-compute-engine/Makefile branches/2017Q4/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in branches/2017Q4/sysutils/py-google-compute-engine/files/google_instance_setup.in branches/2017Q4/sysutils/py-google-compute-engine/files/google_network_setup.in Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/sysutils/py-google-compute-engine/Makefile ============================================================================== --- branches/2017Q4/sysutils/py-google-compute-engine/Makefile Tue Oct 24 17:07:04 2017 (r452787) +++ branches/2017Q4/sysutils/py-google-compute-engine/Makefile Tue Oct 24 17:16:21 2017 (r452788) @@ -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: branches/2017Q4/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in ============================================================================== --- branches/2017Q4/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in Tue Oct 24 17:07:04 2017 (r452787) +++ branches/2017Q4/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in Tue Oct 24 17:16:21 2017 (r452788) @@ -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: branches/2017Q4/sysutils/py-google-compute-engine/files/google_instance_setup.in ============================================================================== --- branches/2017Q4/sysutils/py-google-compute-engine/files/google_instance_setup.in Tue Oct 24 17:07:04 2017 (r452787) +++ branches/2017Q4/sysutils/py-google-compute-engine/files/google_instance_setup.in Tue Oct 24 17:16:21 2017 (r452788) @@ -14,6 +14,7 @@ name="google_instance_setup" rcvar="google_instance_setup_enable" +stop_cmd=":" load_rc_config "${name}" Modified: branches/2017Q4/sysutils/py-google-compute-engine/files/google_network_setup.in ============================================================================== --- branches/2017Q4/sysutils/py-google-compute-engine/files/google_network_setup.in Tue Oct 24 17:07:04 2017 (r452787) +++ branches/2017Q4/sysutils/py-google-compute-engine/files/google_network_setup.in Tue Oct 24 17:16:21 2017 (r452788) @@ -14,6 +14,7 @@ name="google_network_setup" rcvar="google_network_setup_enable" +stop_cmd=":" load_rc_config "${name}"