View | Details | Raw Unified | Return to bug 244057 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-3 / +4 lines)
Lines 1-12 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	cloud-init
3
PORTNAME=	cloud-init
4
PORTVERSION=	19.2
4
PORTVERSION=	20.1
5
CATEGORIES=	net python
5
CATEGORIES=	net python
6
MASTER_SITES=	http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
7
9
MAINTAINER=	zi@FreeBSD.org
8
MAINTAINER=	andrey@bsdnir.info
10
COMMENT=	Init scripts for use on cloud images
9
COMMENT=	Init scripts for use on cloud images
11
10
12
LICENSE=	GPLv3
11
LICENSE=	GPLv3
Lines 30-35 RUN_DEPENDS= dmidecode>0:sysutils/dmidecode \ Link Here
30
		${PYTHON_PKGNAMEPREFIX}jsonpointer>0:devel/py-jsonpointer@${PY_FLAVOR}
29
		${PYTHON_PKGNAMEPREFIX}jsonpointer>0:devel/py-jsonpointer@${PY_FLAVOR}
31
30
32
USES=		python shebangfix
31
USES=		python shebangfix
32
USE_GITHUB=	yes
33
GH_ACCOUNT=	canonical
33
34
34
SHEBANG_FILES=	tools/validate-yaml.py tools/read-dependencies \
35
SHEBANG_FILES=	tools/validate-yaml.py tools/read-dependencies \
35
		tools/read-version
36
		tools/read-version
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1565726929
1
TIMESTAMP = 1584089583
2
SHA256 (cloud-init-19.2.tar.gz) = f5ead1b3c782c159669f8f8779c45d16a986c7405425d75f915ec55301d83a07
2
SHA256 (canonical-cloud-init-20.1_GH0.tar.gz) = ce03bb179ed79bdfd37e80c3b11aae2e79776e28d88898f428c8f2ab6a8272b5
3
SIZE (cloud-init-19.2.tar.gz) = 1028832
3
SIZE (canonical-cloud-init-20.1_GH0.tar.gz) = 1098224
(-)files/patch-sysvinit_freebsd_cloudconfig (-10 lines)
Lines 1-10 Link Here
1
--- sysvinit/freebsd/cloudconfig.orig	2018-08-01 15:31:13 UTC
2
+++ sysvinit/freebsd/cloudconfig
3
@@ -22,4 +22,7 @@ cloudconfig_start()
4
 }
5
 
6
 load_rc_config $name
7
+
8
+: ${cloudconfig_enable="NO"}
9
+
10
 run_rc_command "$1"
(-)files/patch-sysvinit_freebsd_cloudfinal (-10 lines)
Lines 1-10 Link Here
1
--- sysvinit/freebsd/cloudfinal.orig	2018-08-01 15:31:17 UTC
2
+++ sysvinit/freebsd/cloudfinal
3
@@ -22,4 +22,7 @@ cloudfinal_start()
4
 }
5
 
6
 load_rc_config $name
7
+
8
+: ${cloudfinal_enable="NO"}
9
+
10
 run_rc_command "$1"
(-)files/patch-sysvinit_freebsd_cloudinit (-19 lines)
Lines 1-19 Link Here
1
--- sysvinit/freebsd/cloudinit.orig	2018-08-01 15:31:22 UTC
2
+++ sysvinit/freebsd/cloudinit
3
@@ -1,7 +1,7 @@
4
 #!/bin/sh
5
 
6
 # PROVIDE: cloudinit
7
-# REQUIRE: FILESYSTEMS NETWORKING cloudinitlocal
8
+# REQUIRE: FILESYSTEMS NETWORKING cloudinitlocal ldconfig
9
 # BEFORE:  cloudconfig cloudfinal
10
 
11
 . /etc/rc.subr
12
@@ -22,4 +22,7 @@ cloudinit_start()
13
 }
14
 
15
 load_rc_config $name
16
+
17
+: ${cloudinit_enable="NO"}
18
+
19
 run_rc_command "$1"
(-)files/patch-sysvinit_freebsd_cloudinitlocal (-10 lines)
Lines 1-10 Link Here
1
--- sysvinit/freebsd/cloudinitlocal.orig	2018-08-01 15:31:29 UTC
2
+++ sysvinit/freebsd/cloudinitlocal
3
@@ -22,4 +22,7 @@ cloudlocal_start()
4
 }
5
 
6
 load_rc_config $name
7
+
8
+: ${cloudinitlocal_enable="NO"}
9
+
10
 run_rc_command "$1"
(-)pkg-descr (-2 / +5 lines)
Lines 1-3 Link Here
1
Package provides configuration and customization of cloud instance.
1
Cloud-init is the industry standard multi-distribution method for cross-platform
2
cloud instance initialization. It is supported across all major public cloud
3
providers, provisioning systems for private cloud infrastructure, and bare-metal
4
installations.
2
5
3
WWW: https://launchpad.net/cloud-init
6
WWW: https://cloud-init.io/

Return to bug 244057