~james-page/neutron/havana-rc2

« back to all changes in this revision

Viewing changes to debian/tests/neutron-daemons

  • Committer: Chuck Short
  • Date: 2013-09-10 21:27:28 UTC
  • Revision ID: zulcss@ubuntu.com-20130910212728-9hc1djqbm8ypqoo6
Tags: 1:2013.2~b3-0ubuntu5
releasing package neutron version 1:2013.2~b3-0ubuntu5

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
set -e
6
6
DAEMONS=('neutron-server' 'neutron-l3-agent' 'neutron-dhcp-agent' 'neutron-metadata-agent' 'neutron-lbaas-agent')
7
7
for daemon in "${DAEMONS[@]}"; do
8
 
        apt-get intall -y neutron-common $daemon 2>&1 > /dev/null
 
8
        apt-get intsall -y neutron-common $daemon
9
9
    if pidof -x $daemon > /dev/null; then
10
10
        echo "OK"
11
11
    else