blob: 364c1e3da28b4d6389be5609627183ee2e099b9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
DESCRIPTION = "Nova is a cloud computing fabric controller"
HOMEPAGE = "https://launchpad.net/nova"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
DEPENDS = "sudo"
PR = "r0"
SRCNAME = "nova"
SRC_URI = "https://launchpad.net/${SRCNAME}/grizzly/${PV}/+download/${SRCNAME}-${PV}.tar.gz \
file://nova.conf \
file://nova-compute \
file://nova-all \
file://api-paste.ini"
SRC_URI[md5sum] = "38022353c398ce38c4e220d1d18b5916"
SRC_URI[sha256sum] = "db7f5259d848358bf14105d5833869ec145f643312e6bc0adef0050120fe3e07"
S = "${WORKDIR}/${SRCNAME}-${PV}"
inherit setuptools useradd update-rc.d
do_install_append() {
NOVA_CONF_DIR=${D}/${sysconfdir}/nova
install -d ${NOVA_CONF_DIR}
install -m 600 ${S}/etc/nova/policy.json ${NOVA_CONF_DIR}/
# Deploy filters to /etc/nova/rootwrap.d
install -m 755 -d ${NOVA_CONF_DIR}/rootwrap.d
install -m 600 ${S}/etc/nova/rootwrap.d/*.filters ${NOVA_CONF_DIR}/rootwrap.d
chown -R root:root ${NOVA_CONF_DIR}/rootwrap.d
chmod 644 ${NOVA_CONF_DIR}/rootwrap.d
# Set up rootwrap.conf, pointing to /etc/nova/rootwrap.d
install -m 644 ${S}/etc/nova/rootwrap.conf ${NOVA_CONF_DIR}/
sed -e "s:^filters_path=.*$:filters_path=${NOVA_CONF_DIR}/rootwrap.d:" -i ${NOVA_CONF_DIR}/rootwrap.conf
chown root:root $NOVA_CONF_DIR/rootwrap.conf
# Set up the rootwrap sudoers for nova
install -d ${D}${sysconfdir}/sudoers.d
touch ${D}${sysconfdir}/sudoers.d/nova-rootwrap
chmod 0440 ${D}${sysconfdir}/sudoers.d/nova-rootwrap
chown root:root ${D}${sysconfdir}/sudoers.d/nova-rootwrap
echo "root ALL=(root) NOPASSWD: ${bindir}/nova-rootwrap" > ${D}${sysconfdir}/sudoers.d/nova-rootwrap
#Copy the configuration file
install -m 664 ${WORKDIR}/nova.conf ${NOVA_CONF_DIR}/nova.conf
install -m 664 ${WORKDIR}/api-paste.ini ${NOVA_CONF_DIR}
# Create the sqlite database
#touch ${NOVA_CONF_DIR}/nova.db
install -d ${NOVA_CONF_DIR}/instances
if ${@base_contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/nova-compute ${D}${sysconfdir}/init.d/nova-compute
install -m 0755 ${WORKDIR}/nova-all ${D}${sysconfdir}/init.d/nova-all
fi
}
inherit useradd update-rc.d
USERADD_PACKAGES = "${PN}"
GROUPADD_PARAM_${PN} = "--system nova"
USERADD_PARAM_${PN} = "--system --home /var/lib/nova -g nova \
--no-create-home --shell /bin/false nova"
pkg_postinst_${SRCNAME}-controller () {
if [ "x$D" != "x" ]; then
exit 1
fi
#quick fix
#exit 1
# Needed when using a MySQL backend
# mysql -u root -e "CREATE DATABASE nova CHARACTER SET latin1;"
sudo -u postgres createdb nova
nova-manage db sync
}
PACKAGES += "${SRCNAME}-common ${SRCNAME}-compute ${SRCNAME}-controller"
FILES_${PN} = "${libdir}/*"
FILES_${SRCNAME}-common = " ${bindir}/nova-manage \
${bindir}/nova-rootwrap \
${sysconfdir}/${SRCNAME}/* \
${sysconfdir}/sudoers.d"
FILES_${SRCNAME}-compute = "${bindir}/nova-compute \
${sysconfdir}/init.d/nova-compute"
FILES_${SRCNAME}-controller = "${bindir}/* \
${sysconfdir}/init.d/nova-all"
RDEPENDS_${PN} = " python-modules \
python-misc \
python-argparse \
python-amqplib \
python-anyjson \
python-babel \
python-boto \
python-cinderclient \
python-cheetah \
python-eventlet \
python-feedparser \
python-glanceclient \
python-greenlet \
python-httplib2 \
python-iso8601 \
python-kombu \
python-lxml \
python-netaddr \
python-oslo.config \
python-paste \
python-pastedeploy \
python-paramiko \
python-pyasn1 \
python-setuptools-git \
python-simplejson \
python-setuptools \
python-sqlalchemy \
python-sqlalchemy-migrate \
python-stevedore \
python-suds \
python-quantumclient \
python-routes \
python-webob \
python-websockify \
"
RDEPENDS_${SRCNAME}-common = "${PN} openssl openssl-misc libxml2 libxslt \
iptables curl dnsmasq sudo procps"
RDEPENDS_${SRCNAME}-compute = "${PN} nova-common \
qemu libvirt libvirt-libvirtd libvirt-python libvirt-virsh"
RDEPENDS_${SRCNAME}-controller = "${PN} nova-common \
postgresql postgresql-client python-psycopg2"
INITSCRIPT_PACKAGES = "${SRCNAME}-compute ${SRCNAME}-controller"
INITSCRIPT_NAME_${SRCNAME}-compute = "nova-compute"
INITSCRIPT_NAME_${SRCNAME}-controller = "nova-all"
|