blob: c64d8502ba1da1d1b2e2d31adcb764b0a3a6b008 [file] [log] [blame]
Sean Dagueb562e6a2012-11-19 16:00:01 -05001# lib/horizon
2# Functions to control the configuration and operation of the horizon service
Sean Dagueb562e6a2012-11-19 16:00:01 -05003
4# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01005#
6# - ``functions`` file
7# - ``apache`` file
8# - ``SERVICE_{TENANT_NAME|PASSWORD}`` must be defined
Sean Dagueb562e6a2012-11-19 16:00:01 -05009
10# ``stack.sh`` calls the entry points in this order:
11#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010012# - install_horizon
13# - configure_horizon
14# - init_horizon
15# - start_horizon
16# - stop_horizon
17# - cleanup_horizon
Sean Dagueb562e6a2012-11-19 16:00:01 -050018
19# Save trace setting
20XTRACE=$(set +o | grep xtrace)
21set +o xtrace
22
23
24# Defaults
25# --------
26
Sean Dagueb562e6a2012-11-19 16:00:01 -050027# Set up default directories
28HORIZON_DIR=$DEST/horizon
29
Akihiro MOTOKI7104ab42013-03-27 19:47:11 +090030# local_settings.py is used to customize Dashboard settings.
31# The example file in Horizon repo is used by default.
32HORIZON_SETTINGS=${HORIZON_SETTINGS:-$HORIZON_DIR/openstack_dashboard/local/local_settings.py.example}
33
Dean Troyer4237f592014-01-29 16:22:11 -060034# Tell Tempest this project is present
35TEMPEST_SERVICES+=,horizon
36
Dean Troyercc6b4432013-04-08 15:38:03 -050037
38# Functions
39# ---------
40
Eugene Nikanorovb663b332013-03-07 16:10:10 +040041# utility method of setting python option
42function _horizon_config_set() {
43 local file=$1
44 local section=$2
45 local option=$3
46 local value=$4
47
48 if grep -q "^$section" $file; then
49 line=$(sed -ne "/^$section/,/^}/ { /^ *'$option':/ p; }" $file)
50 if [ -n "$line" ]; then
51 sed -i -e "/^$section/,/^}/ s/^\( *'$option'\) *:.*$/\1: $value,/" $file
52 else
Ravi Chunduru95c93e22013-07-16 04:18:47 -070053 sed -i -e "/^$section/a\ '$option': $value," $file
Eugene Nikanorovb663b332013-03-07 16:10:10 +040054 fi
55 else
56 echo -e "\n\n$section = {\n '$option': $value,\n}" >> $file
57 fi
58}
Sean Dagueb562e6a2012-11-19 16:00:01 -050059
Ian Wienandad43b392013-04-11 11:13:09 +100060
Dean Troyer1a6d4492013-06-03 16:47:36 -050061
Sean Dagueb562e6a2012-11-19 16:00:01 -050062# Entry Points
63# ------------
64
65# cleanup_horizon() - Remove residual data files, anything left over from previous
66# runs that a clean run would need to clean up
67function cleanup_horizon() {
Dean Troyer1a6d4492013-06-03 16:47:36 -050068 if [[ is_fedora && $DISTRO =~ (rhel6) ]]; then
69 # If ``/usr/bin/node`` points into ``$DEST``
70 # we installed it via ``install_nodejs``
71 if [[ $(readlink -f /usr/bin/node) =~ ($DEST) ]]; then
72 sudo rm /usr/bin/node
73 fi
74 fi
Sean Dagueb562e6a2012-11-19 16:00:01 -050075}
76
77# configure_horizon() - Set config files, create data dirs, etc
78function configure_horizon() {
79 setup_develop $HORIZON_DIR
80}
81
82# init_horizon() - Initialize databases, etc.
83function init_horizon() {
84 # Remove stale session database.
85 rm -f $HORIZON_DIR/openstack_dashboard/local/dashboard_openstack.sqlite3
86
87 # ``local_settings.py`` is used to override horizon default settings.
88 local_settings=$HORIZON_DIR/openstack_dashboard/local/local_settings.py
Akihiro MOTOKI7104ab42013-03-27 19:47:11 +090089 cp $HORIZON_SETTINGS $local_settings
Sean Dagueb562e6a2012-11-19 16:00:01 -050090
Edgar Maganac973f122013-07-29 16:39:56 -070091 if is_service_enabled neutron; then
92 _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK enable_security_group $Q_USE_SECGROUP
93 fi
Eugene Nikanorovb663b332013-03-07 16:10:10 +040094 # enable loadbalancer dashboard in case service is enabled
95 if is_service_enabled q-lbaas; then
Nobuto MURATA73a39bf2013-07-11 16:26:02 +090096 _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK enable_lb True
Eugene Nikanorovb663b332013-03-07 16:10:10 +040097 fi
98
Ravi Chunduru95c93e22013-07-16 04:18:47 -070099 # enable firewall dashboard in case service is enabled
100 if is_service_enabled q-fwaas; then
101 _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK enable_firewall True
102 fi
103
Akihiro MOTOKIeaa9e1e2013-09-10 05:22:37 +0900104 # enable VPN dashboard in case service is enabled
105 if is_service_enabled q-vpn; then
106 _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK enable_vpn True
107 fi
108
Sean Dagueb562e6a2012-11-19 16:00:01 -0500109 # Initialize the horizon database (it stores sessions and notices shown to
110 # users). The user system is external (keystone).
111 cd $HORIZON_DIR
112 python manage.py syncdb --noinput
113 cd $TOP_DIR
114
115 # Create an empty directory that apache uses as docroot
116 sudo mkdir -p $HORIZON_DIR/.blackhole
117
Chris Buccella610af8c2013-11-05 12:56:34 +0000118 # Apache 2.4 uses mod_authz_host for access control now (instead of "Allow")
Sunil Thaha627d9c72013-04-10 14:11:44 +1000119 HORIZON_REQUIRE=''
Chris Buccella610af8c2013-11-05 12:56:34 +0000120 if check_apache_version "2.4" ; then
121 HORIZON_REQUIRE='Require all granted'
122 fi
123
Attila Fazekas248a8cc2013-08-06 08:00:06 +0200124 local horizon_conf=/etc/$APACHE_NAME/$APACHE_CONF_DIR/horizon.conf
Vincent Untzc18b9652012-12-04 12:36:34 +0100125 if is_ubuntu; then
Sean Dagueb562e6a2012-11-19 16:00:01 -0500126 # Clean up the old config name
127 sudo rm -f /etc/apache2/sites-enabled/000-default
128 # Be a good citizen and use the distro tools here
zhang-hared98a5d02013-06-21 18:18:02 +0800129 sudo touch $horizon_conf
Attila Fazekas248a8cc2013-08-06 08:00:06 +0200130 sudo a2ensite horizon.conf
Vincent Untz00011c02012-12-06 09:56:32 +0100131 elif is_fedora; then
Vincent Untz00011c02012-12-06 09:56:32 +0100132 sudo sed '/^Listen/s/^.*$/Listen 0.0.0.0:80/' -i /etc/httpd/conf/httpd.conf
Adam Spiers3ac86122013-10-01 01:08:20 +0100133 elif is_suse; then
134 : # nothing to do
Sean Dagueb562e6a2012-11-19 16:00:01 -0500135 else
Adam Spiers15aa0fc2013-10-01 01:10:16 +0100136 exit_distro_not_supported "horizon apache configuration"
Sean Dagueb562e6a2012-11-19 16:00:01 -0500137 fi
138
JordanP1e4587e2013-05-08 22:19:59 +0200139 # Remove old log files that could mess with how devstack detects whether Horizon
140 # has been successfully started (see start_horizon() and functions::screen_it())
141 sudo rm -f /var/log/$APACHE_NAME/horizon_*
142
Sean Dagueb562e6a2012-11-19 16:00:01 -0500143 # Configure apache to run horizon
144 sudo sh -c "sed -e \"
145 s,%USER%,$APACHE_USER,g;
146 s,%GROUP%,$APACHE_GROUP,g;
147 s,%HORIZON_DIR%,$HORIZON_DIR,g;
148 s,%APACHE_NAME%,$APACHE_NAME,g;
149 s,%DEST%,$DEST,g;
Sunil Thaha627d9c72013-04-10 14:11:44 +1000150 s,%HORIZON_REQUIRE%,$HORIZON_REQUIRE,g;
zhang-hared98a5d02013-06-21 18:18:02 +0800151 \" $FILES/apache-horizon.template >$horizon_conf"
Sean Dagueb562e6a2012-11-19 16:00:01 -0500152}
153
154# install_horizon() - Collect source and prepare
155function install_horizon() {
156 # Apache installation, because we mark it NOPRIME
zhang-hared98a5d02013-06-21 18:18:02 +0800157 install_apache_wsgi
Sean Dagueb562e6a2012-11-19 16:00:01 -0500158
Sean Dagueb562e6a2012-11-19 16:00:01 -0500159 git_clone $HORIZON_REPO $HORIZON_DIR $HORIZON_BRANCH $HORIZON_TAG
160}
161
162# start_horizon() - Start running processes, including screen
163function start_horizon() {
zhang-hared98a5d02013-06-21 18:18:02 +0800164 restart_apache_server
Sean Dagueb562e6a2012-11-19 16:00:01 -0500165 screen_it horizon "cd $HORIZON_DIR && sudo tail -f /var/log/$APACHE_NAME/horizon_error.log"
166}
167
168# stop_horizon() - Stop running processes (non-screen)
169function stop_horizon() {
zhang-hared98a5d02013-06-21 18:18:02 +0800170 stop_apache_server
Sean Dagueb562e6a2012-11-19 16:00:01 -0500171}
172
Dean Troyer1a6d4492013-06-03 16:47:36 -0500173
Sean Dagueb562e6a2012-11-19 16:00:01 -0500174# Restore xtrace
175$XTRACE
Sean Dague584d90e2013-03-29 14:34:53 -0400176
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100177# Tell emacs to use shell-script-mode
178## Local variables:
179## mode: shell-script
180## End: