summaryrefslogtreecommitdiff
path: root/openstack
diff options
context:
space:
mode:
authorFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2014-12-16 10:40:32 +0000
committerFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2015-01-22 12:46:28 +0000
commit9e2f84bc1aff777a9aae68a794d130976b539487 (patch)
tree54866f7bf0e4ae42ef9a5eaf213958628a87cdbd /openstack
parent7fddea2659845dfd3a8e844b4ab0778979fa3a03 (diff)
downloaddefinitions-9e2f84bc1aff777a9aae68a794d130976b539487.tar.gz
Remove unnecessary openstack-neutron-server script
Diffstat (limited to 'openstack')
-rw-r--r--openstack/usr/share/openstack/openstack-neutron-server29
1 files changed, 0 insertions, 29 deletions
diff --git a/openstack/usr/share/openstack/openstack-neutron-server b/openstack/usr/share/openstack/openstack-neutron-server
deleted file mode 100644
index e596b286..00000000
--- a/openstack/usr/share/openstack/openstack-neutron-server
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2014 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-
-
-set -e
-
-# Check if there is a environmet set for neutron-server
-[ -r /etc/default/neutron-server ] && . /etc/default/neutron-server
-
-# Check if a plugin configuration file exists
-[ -r "$NEUTRON_PLUGIN_CONFIG" ] && CONF_ARG="--config-file $NEUTRON_PLUGIN_CONFIG"
-
-# Run neutron-server
-sudo -u neutron /usr/bin/neutron-server -- \
- --config-file /etc/neutron/neutron.conf
- --log-file /var/log/neutron/server.log $CONF_ARG &