diff options
author | ultima <ultima@FreeBSD.org> | 2017-10-16 06:11:30 +0800 |
---|---|---|
committer | ultima <ultima@FreeBSD.org> | 2017-10-16 06:11:30 +0800 |
commit | f1e4f3c0934b3e190885b6a6863963ce22f6a5f4 (patch) | |
tree | 2c4c2bd9b80ad17766b94d3ab5451315380d8d28 | |
parent | 41ddc3c518d80570333803a2116eec09bd5defb6 (diff) | |
download | freebsd-ports-gnome-f1e4f3c0934b3e190885b6a6863963ce22f6a5f4.tar.gz freebsd-ports-gnome-f1e4f3c0934b3e190885b6a6863963ce22f6a5f4.tar.zst freebsd-ports-gnome-f1e4f3c0934b3e190885b6a6863963ce22f6a5f4.zip |
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
4 files changed, 4 insertions, 2 deletions
diff --git a/sysutils/py-google-compute-engine/Makefile b/sysutils/py-google-compute-engine/Makefile index 9c39f49d3985..6ea18415c169 100644 --- a/sysutils/py-google-compute-engine/Makefile +++ b/sysutils/py-google-compute-engine/Makefile @@ -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} diff --git a/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in b/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in index 8ba2db500769..93b5635d3358 100644 --- a/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in +++ b/sysutils/py-google-compute-engine/files/google_clock_skew_daemon.in @@ -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. diff --git a/sysutils/py-google-compute-engine/files/google_instance_setup.in b/sysutils/py-google-compute-engine/files/google_instance_setup.in index 04bc9610c0e8..689fbbf45728 100644 --- a/sysutils/py-google-compute-engine/files/google_instance_setup.in +++ b/sysutils/py-google-compute-engine/files/google_instance_setup.in @@ -14,6 +14,7 @@ name="google_instance_setup" rcvar="google_instance_setup_enable" +stop_cmd=":" load_rc_config "${name}" diff --git a/sysutils/py-google-compute-engine/files/google_network_setup.in b/sysutils/py-google-compute-engine/files/google_network_setup.in index f9c0237b45c5..0c12e64ebfdb 100644 --- a/sysutils/py-google-compute-engine/files/google_network_setup.in +++ b/sysutils/py-google-compute-engine/files/google_network_setup.in @@ -14,6 +14,7 @@ name="google_network_setup" rcvar="google_network_setup_enable" +stop_cmd=":" load_rc_config "${name}" |