Update RPM-specs to 2013.2 version
[openstack-build/neutron-build.git] / rpm / SOURCES / neutron-server.init
similarity index 89%
rename from rpm/SOURCES/quantum-server.init
rename to rpm/SOURCES/neutron-server.init
index ed62f01a420901998417aa3d84473ff492d34376..36d792a8def9aea8eea95e3eb88d9f167e2dfd3a 100644 (file)
@@ -1,15 +1,15 @@
 #!/bin/sh
 #
-# quantum  OpenStack Software Defined Networking Service
+# neutron  OpenStack Software Defined Networking Service
 #
 # chkconfig:   - 98 02
-# description: quantum provides an API to  \
+# description: neutron provides an API to  \
 #              * request and configure virtual networks
 ### END INIT INFO
 
 . /etc/rc.d/init.d/functions
 
-prog=quantum
+prog=neutron
 exec="/usr/bin/$prog-server"
 config="/etc/$prog/$prog.conf"
 pidfile="/var/run/$prog/$prog.pid"
@@ -23,7 +23,7 @@ start() {
     [ -x $exec ] || exit 5
     [ -f $config ] || exit 6
     echo -n $"Starting $prog: "
-    daemon --user quantum --pidfile $pidfile "$exec --config-file $config --config-file /etc/$prog/plugin.ini --log-file $logfile &>/dev/null & echo \$! > $pidfile"
+    daemon --user neutron --pidfile $pidfile "$exec --config-file $config --config-file /etc/$prog/plugin.ini --log-file $logfile &>/dev/null & echo \$! > $pidfile"
     retval=$?
     echo
     [ $retval -eq 0 ] && touch $lockfile