
The following are included in the switch to strict confinement: * Set snapcraft.yaml confinement to strict and restore/update plugs * Drop building of python as it's not required for strict snaps * Switch back to running apps under root Change-Id: I2a985ecea36c82f9b08f145015219911e0ec0616
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
name: neutron
|
|
version: ocata
|
|
summary: OpenStack Network Service (neutron)
|
|
description: OpenStack Network Service (neutron)
|
|
confinement: strict
|
|
grade: devel
|
|
|
|
apps:
|
|
api:
|
|
command: snap-openstack neutron-server
|
|
daemon: simple
|
|
plugs:
|
|
- network-bind
|
|
manage:
|
|
command: snap-openstack neutron-db-manage
|
|
aliases:
|
|
- neutron-db-manage
|
|
plugs:
|
|
- network
|
|
|
|
parts:
|
|
neutron:
|
|
plugin: python
|
|
python-version: python2
|
|
source: http://tarballs.openstack.org/neutron/neutron-stable-ocata.tar.gz
|
|
python-packages:
|
|
- pymysql
|
|
- python-memcached
|
|
- git+https://github.com/openstack/snap.openstack#egg=snap.openstack
|
|
constraints: https://raw.githubusercontent.com/openstack/requirements/stable/ocata/upper-constraints.txt
|
|
build-packages:
|
|
- gcc
|
|
- libffi-dev
|
|
- libssl-dev
|
|
install: |
|
|
touch $SNAPCRAFT_PART_INSTALL/lib/python2.7/site-packages/paste/__init__.py
|
|
touch $SNAPCRAFT_PART_INSTALL/lib/python2.7/site-packages/repoze/__init__.py
|
|
export SNAP_ROOT="../../../"
|
|
export SNAP_SITE_PACKAGES="$SNAPCRAFT_PART_INSTALL/lib/python2.7/site-packages"
|
|
patch -d $SNAP_SITE_PACKAGES -p1 < $SNAP_ROOT/patches/oslo-config-dirs.patch
|
|
templates:
|
|
after: [neutron]
|
|
plugin: dump
|
|
source: snap
|
|
config:
|
|
after: [neutron]
|
|
plugin: dump
|
|
source: http://tarballs.openstack.org/neutron/neutron-stable-ocata.tar.gz
|
|
organize:
|
|
etc/*.conf: etc/neutron/
|
|
etc/*.ini: etc/neutron/
|
|
etc/*.json: etc/neutron/
|
|
etc/rootwrap.d/*: etc/neutron/rootwrap.d/
|
|
filesets:
|
|
etc:
|
|
- etc/neutron/*
|
|
stage: [$etc]
|
|
prime: [$etc]
|