clean up screen and tail_log references
Change-Id: I6bcfa09931ed1f70e071ccb16688c15c7ef2898f
This commit is contained in:
parent
cdba1b3716
commit
0eebeb415a
11
lib/cinder
11
lib/cinder
@ -473,7 +473,7 @@ function _configure_tgt_for_config_d {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_cinder() - Start running processes, including screen
|
# start_cinder() - Start running processes
|
||||||
function start_cinder {
|
function start_cinder {
|
||||||
local service_port=$CINDER_SERVICE_PORT
|
local service_port=$CINDER_SERVICE_PORT
|
||||||
local service_protocol=$CINDER_SERVICE_PROTOCOL
|
local service_protocol=$CINDER_SERVICE_PROTOCOL
|
||||||
@ -533,12 +533,9 @@ function start_cinder {
|
|||||||
# stop_cinder() - Stop running processes
|
# stop_cinder() - Stop running processes
|
||||||
function stop_cinder {
|
function stop_cinder {
|
||||||
stop_process c-api
|
stop_process c-api
|
||||||
|
stop_process c-bak
|
||||||
# Kill the cinder screen windows
|
stop_process c-sch
|
||||||
local serv
|
stop_process c-vol
|
||||||
for serv in c-bak c-sch c-vol; do
|
|
||||||
stop_process $serv
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# create_volume_types() - Create Cinder's configured volume types
|
# create_volume_types() - Create Cinder's configured volume types
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
_XTRACE_DSTAT=$(set +o | grep xtrace)
|
_XTRACE_DSTAT=$(set +o | grep xtrace)
|
||||||
set +o xtrace
|
set +o xtrace
|
||||||
|
|
||||||
# start_dstat() - Start running processes, including screen
|
# start_dstat() - Start running processes
|
||||||
function start_dstat {
|
function start_dstat {
|
||||||
# A better kind of sysstat, with the top process per time slice
|
# A better kind of sysstat, with the top process per time slice
|
||||||
run_process dstat "$TOP_DIR/tools/dstat.sh $LOGDIR"
|
run_process dstat "$TOP_DIR/tools/dstat.sh $LOGDIR"
|
||||||
|
@ -333,7 +333,7 @@ function install_glance {
|
|||||||
setup_develop $GLANCE_DIR
|
setup_develop $GLANCE_DIR
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_glance() - Start running processes, including screen
|
# start_glance() - Start running processes
|
||||||
function start_glance {
|
function start_glance {
|
||||||
local service_protocol=$GLANCE_SERVICE_PROTOCOL
|
local service_protocol=$GLANCE_SERVICE_PROTOCOL
|
||||||
if is_service_enabled tls-proxy; then
|
if is_service_enabled tls-proxy; then
|
||||||
@ -358,7 +358,6 @@ function start_glance {
|
|||||||
|
|
||||||
# stop_glance() - Stop running processes
|
# stop_glance() - Stop running processes
|
||||||
function stop_glance {
|
function stop_glance {
|
||||||
# Kill the Glance screen windows
|
|
||||||
stop_process g-api
|
stop_process g-api
|
||||||
stop_process g-reg
|
stop_process g-reg
|
||||||
}
|
}
|
||||||
|
@ -181,13 +181,12 @@ function install_horizon {
|
|||||||
git_clone $HORIZON_REPO $HORIZON_DIR $HORIZON_BRANCH
|
git_clone $HORIZON_REPO $HORIZON_DIR $HORIZON_BRANCH
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_horizon() - Start running processes, including screen
|
# start_horizon() - Start running processes
|
||||||
function start_horizon {
|
function start_horizon {
|
||||||
restart_apache_server
|
restart_apache_server
|
||||||
tail_log horizon /var/log/$APACHE_NAME/horizon_error.log
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop_horizon() - Stop running processes (non-screen)
|
# stop_horizon() - Stop running processes
|
||||||
function stop_horizon {
|
function stop_horizon {
|
||||||
stop_apache_server
|
stop_apache_server
|
||||||
}
|
}
|
||||||
|
@ -536,7 +536,7 @@ function install_keystone {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_keystone() - Start running processes, including screen
|
# start_keystone() - Start running processes
|
||||||
function start_keystone {
|
function start_keystone {
|
||||||
# Get right service port for testing
|
# Get right service port for testing
|
||||||
local service_port=$KEYSTONE_SERVICE_PORT
|
local service_port=$KEYSTONE_SERVICE_PORT
|
||||||
@ -549,8 +549,6 @@ function start_keystone {
|
|||||||
if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
|
if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
|
||||||
enable_apache_site keystone
|
enable_apache_site keystone
|
||||||
restart_apache_server
|
restart_apache_server
|
||||||
tail_log key /var/log/$APACHE_NAME/keystone.log
|
|
||||||
tail_log key-access /var/log/$APACHE_NAME/keystone_access.log
|
|
||||||
else # uwsgi
|
else # uwsgi
|
||||||
run_process keystone "$KEYSTONE_BIN_DIR/uwsgi --ini $KEYSTONE_PUBLIC_UWSGI_CONF" ""
|
run_process keystone "$KEYSTONE_BIN_DIR/uwsgi --ini $KEYSTONE_PUBLIC_UWSGI_CONF" ""
|
||||||
fi
|
fi
|
||||||
@ -585,8 +583,6 @@ function stop_keystone {
|
|||||||
else
|
else
|
||||||
stop_process keystone
|
stop_process keystone
|
||||||
fi
|
fi
|
||||||
# Kill the Keystone screen window
|
|
||||||
stop_process key
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# bootstrap_keystone() - Initialize user, role and project
|
# bootstrap_keystone() - Initialize user, role and project
|
||||||
|
@ -409,7 +409,7 @@ function start_neutron_api {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_neutron() - Start running processes, including screen
|
# start_neutron() - Start running processes
|
||||||
function start_neutron_new {
|
function start_neutron_new {
|
||||||
# Start up the neutron agents if enabled
|
# Start up the neutron agents if enabled
|
||||||
# TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
|
# TODO(sc68cal) Make this pluggable so different DevStack plugins for different Neutron plugins
|
||||||
@ -446,7 +446,7 @@ function start_neutron_new {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop_neutron() - Stop running processes (non-screen)
|
# stop_neutron() - Stop running processes
|
||||||
function stop_neutron_new {
|
function stop_neutron_new {
|
||||||
for serv in neutron-api neutron-agent neutron-l3; do
|
for serv in neutron-api neutron-agent neutron-l3; do
|
||||||
stop_process $serv
|
stop_process $serv
|
||||||
|
@ -455,7 +455,7 @@ function configure_neutron_after_post_config {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Start running processes, including screen
|
# Start running processes
|
||||||
function start_neutron_service_and_check {
|
function start_neutron_service_and_check {
|
||||||
local service_port=$Q_PORT
|
local service_port=$Q_PORT
|
||||||
local service_protocol=$Q_PROTOCOL
|
local service_protocol=$Q_PROTOCOL
|
||||||
@ -524,7 +524,7 @@ function stop_mutnauq_l2_agent {
|
|||||||
stop_process q-agt
|
stop_process q-agt
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop_mutnauq_other() - Stop running processes (non-screen)
|
# stop_mutnauq_other() - Stop running processes
|
||||||
function stop_mutnauq_other {
|
function stop_mutnauq_other {
|
||||||
if is_service_enabled q-dhcp; then
|
if is_service_enabled q-dhcp; then
|
||||||
stop_process q-dhcp
|
stop_process q-dhcp
|
||||||
|
4
lib/nova
4
lib/nova
@ -882,7 +882,7 @@ function start_nova_compute {
|
|||||||
export PATH=$old_path
|
export PATH=$old_path
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_nova() - Start running processes, including screen
|
# start_nova() - Start running processes
|
||||||
function start_nova_rest {
|
function start_nova_rest {
|
||||||
# Hack to set the path for rootwrap
|
# Hack to set the path for rootwrap
|
||||||
local old_path=$PATH
|
local old_path=$PATH
|
||||||
@ -999,7 +999,7 @@ function stop_nova_conductor {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop_nova() - Stop running processes (non-screen)
|
# stop_nova() - Stop running processes
|
||||||
function stop_nova {
|
function stop_nova {
|
||||||
stop_nova_rest
|
stop_nova_rest
|
||||||
stop_nova_conductor
|
stop_nova_conductor
|
||||||
|
13
lib/swift
13
lib/swift
@ -7,7 +7,7 @@
|
|||||||
#
|
#
|
||||||
# - ``functions`` file
|
# - ``functions`` file
|
||||||
# - ``apache`` file
|
# - ``apache`` file
|
||||||
# - ``DEST``, ``SCREEN_NAME``, `SWIFT_HASH` must be defined
|
# - ``DEST``, `SWIFT_HASH` must be defined
|
||||||
# - ``STACK_USER`` must be defined
|
# - ``STACK_USER`` must be defined
|
||||||
# - ``SWIFT_DATA_DIR`` or ``DATA_DIR`` must be defined
|
# - ``SWIFT_DATA_DIR`` or ``DATA_DIR`` must be defined
|
||||||
# - ``lib/keystone`` file
|
# - ``lib/keystone`` file
|
||||||
@ -780,7 +780,7 @@ function install_ceilometermiddleware {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_swift() - Start running processes, including screen
|
# start_swift() - Start running processes
|
||||||
function start_swift {
|
function start_swift {
|
||||||
# (re)start memcached to make sure we have a clean memcache.
|
# (re)start memcached to make sure we have a clean memcache.
|
||||||
restart_service memcached
|
restart_service memcached
|
||||||
@ -799,13 +799,6 @@ function start_swift {
|
|||||||
restart_apache_server
|
restart_apache_server
|
||||||
# The rest of the services should be started in backgroud
|
# The rest of the services should be started in backgroud
|
||||||
swift-init --run-dir=${SWIFT_DATA_DIR}/run rest start
|
swift-init --run-dir=${SWIFT_DATA_DIR}/run rest start
|
||||||
# Be we still want the logs of Swift Proxy in our screen session
|
|
||||||
tail_log s-proxy /var/log/$APACHE_NAME/proxy-server
|
|
||||||
if [[ ${SWIFT_REPLICAS} == 1 ]]; then
|
|
||||||
for type in object container account; do
|
|
||||||
tail_log s-${type} /var/log/$APACHE_NAME/${type}-server-1
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -859,7 +852,7 @@ function start_swift {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop_swift() - Stop running processes (non-screen)
|
# stop_swift() - Stop running processes
|
||||||
function stop_swift {
|
function stop_swift {
|
||||||
local type
|
local type
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ function install_XXXX {
|
|||||||
:
|
:
|
||||||
}
|
}
|
||||||
|
|
||||||
# start_XXXX() - Start running processes, including screen
|
# start_XXXX() - Start running processes
|
||||||
function start_XXXX {
|
function start_XXXX {
|
||||||
# The quoted command must be a single command and not include an
|
# The quoted command must be a single command and not include an
|
||||||
# shell metacharacters, redirections or shell builtins.
|
# shell metacharacters, redirections or shell builtins.
|
||||||
@ -89,7 +89,7 @@ function start_XXXX {
|
|||||||
:
|
:
|
||||||
}
|
}
|
||||||
|
|
||||||
# stop_XXXX() - Stop running processes (non-screen)
|
# stop_XXXX() - Stop running processes
|
||||||
function stop_XXXX {
|
function stop_XXXX {
|
||||||
# for serv in serv-a serv-b; do
|
# for serv in serv-a serv-b; do
|
||||||
# stop_process $serv
|
# stop_process $serv
|
||||||
|
Loading…
Reference in New Issue
Block a user