Add Neutron 7.0.0 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
deleted file mode 100644 (file)
index 6de03ad..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/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#