From add8c1d29c22fd91c0f12693d55d043adc2525be Mon Sep 17 00:00:00 2001 From: Francisco Redondo Marchena Date: Mon, 16 Feb 2015 16:13:27 +0000 Subject: Install rootwrap filters on post-install time Installing rootwrap filters from their repositories will make easy to deal with updates. Also move neutron rootwrap filters to the right location without duplication. --- strata/openstack-services/cinder.morph | 9 +++++++++ strata/openstack-services/neutron.morph | 8 ++++++++ strata/openstack-services/nova.morph | 9 +++++++++ 3 files changed, 26 insertions(+) create mode 100644 strata/openstack-services/cinder.morph create mode 100644 strata/openstack-services/neutron.morph create mode 100644 strata/openstack-services/nova.morph (limited to 'strata/openstack-services') diff --git a/strata/openstack-services/cinder.morph b/strata/openstack-services/cinder.morph new file mode 100644 index 00000000..bfc31026 --- /dev/null +++ b/strata/openstack-services/cinder.morph @@ -0,0 +1,9 @@ +name: cinder +kind: chunk +build-system: python-distutils +post-install-commands: +# Install rootwrap.conf +- install -D -m 640 etc/cinder/rootwrap.conf "$DESTDIR"/etc/cinder/rootwrap.conf +# Move rootwrap files to a proper location +- mkdir -p "$DESTDIR"/etc/cinder/rootwrap.d +- install -D -m 644 etc/cinder/rootwrap.d/* "$DESTDIR"/etc/cinder/rootwrap.d/ diff --git a/strata/openstack-services/neutron.morph b/strata/openstack-services/neutron.morph new file mode 100644 index 00000000..1de5678b --- /dev/null +++ b/strata/openstack-services/neutron.morph @@ -0,0 +1,8 @@ +name: neutron +kind: chunk +build-system: python-distutils +post-install-commands: +# Move rootwrap files to a proper location +- mkdir -p "$DESTDIR"/etc/neutron +- mv "$DESTDIR$PREFIX"/etc/neutron/rootwrap.d "$DESTDIR"/etc/neutron/ +- mv "$DESTDIR$PREFIX"/etc/neutron/rootwrap.conf "$DESTDIR"/etc/neutron/ diff --git a/strata/openstack-services/nova.morph b/strata/openstack-services/nova.morph new file mode 100644 index 00000000..4bf15bc7 --- /dev/null +++ b/strata/openstack-services/nova.morph @@ -0,0 +1,9 @@ +name: nova +kind: chunk +build-system: python-distutils +post-install-commands: +# Install rootwrap.conf +- install -D -m 640 etc/nova/rootwrap.conf "$DESTDIR"/etc/nova/rootwrap.conf +# Move rootwrap files to a proper location +- mkdir -p "$DESTDIR"/etc/nova/rootwrap.d +- install -D -m 644 etc/nova/rootwrap.d/* "$DESTDIR"/etc/nova/rootwrap.d/ -- cgit v1.2.1