Add Neutron 2015.1 for Ubuntu 14.04
[openstack-build/neutron-build.git] / trusty / debian / neutron-common.postinst
diff --git a/trusty/debian/neutron-common.postinst b/trusty/debian/neutron-common.postinst
new file mode 100644 (file)
index 0000000..6de03ad
--- /dev/null
@@ -0,0 +1,38 @@
+#!/bin/sh
+
+set -e 
+
+if [ "$1" = "configure" ]
+then
+       if ! getent group neutron > /dev/null 2>&1
+       then
+               addgroup --system neutron >/dev/null
+       fi
+       if ! getent passwd neutron > /dev/null 2>&1
+       then
+               adduser --system --home /var/lib/neutron --ingroup neutron --no-create-home --shell /bin/false neutron
+       fi
+       chown -R neutron:neutron /var/lib/neutron/
+
+       chown -R neutron:adm /var/log/neutron/ 
+       chmod 0750 /var/log/neutron/
+
+    chown -R root:neutron /etc/neutron/
+    # NOTE(jamespage): In order to execute unit test in decomposed
+    #                  vendor drivers, /etc/neutron must be readable
+    #                  other than by root or neutron; limitation of
+    #                  access to neutron.conf is sufficient as this
+    #                  file contains access details for DB, keystone
+    #                  and message bus.
+    chmod 0755 /etc/neutron/
+    chmod -f 0640 /etc/neutron/neutron.conf || :
+       chown root:root /etc/neutron/rootwrap.conf
+       chown -R root:root /etc/neutron/rootwrap.d
+       chmod 0755 /etc/neutron/rootwrap.d
+
+       if [ -f /etc/sudoers.d/neutron_sudoers ] ; then
+               chmod 0440 /etc/sudoers.d/neutron_sudoers
+       fi
+fi
+
+#DEBHELPER#