Skip to content

Commit cd478a6

Browse files
author
Akshat Nair
committed
install : create dirs useful for prestoadmin
We need dirs like connectors, coodinator and workers created in the location /etc/opt/prestoadmin. Pre-creating them will give a better user experience for configuring Presto using prestoadmin. Testing: added a new test
1 parent 87f22e2 commit cd478a6

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

packaging/install-prestoadmin.template

+9
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,12 @@ mkdir -p $LOG_DIR
6161

6262
CONF_DIR=/etc/opt/prestoadmin
6363
mkdir -p $CONF_DIR
64+
65+
CONNECTOR_DIR=$CONF_DIR/connectors
66+
mkdir -p $CONNECTOR_DIR
67+
68+
COORDINATOR_DIR=$CONF_DIR/coordinator
69+
mkdir -p $COORDINATOR_DIR
70+
71+
WORKERS_DIR=$CONF_DIR/workers
72+
mkdir -p $WORKERS_DIR

tests/product/standalone/test_installation.py

+23
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,26 @@ def test_cert_arg_to_installation_real_cert(self):
155155
self.assertTrue('Adding pypi.python.org as trusted-host. Cannot find'
156156
' certificate file: %s' % cert_file not in output,
157157
'Unable to find cert file; output: %s' % output)
158+
159+
def test_additional_dirs_created(self):
160+
install_dir = '/opt'
161+
script = """
162+
set -e
163+
cp {mount_dir}/prestoadmin-*.tar.bz2 {install_dir}
164+
cd {install_dir}
165+
tar jxf prestoadmin-*.tar.bz2
166+
cd prestoadmin
167+
./install-prestoadmin.sh
168+
""".format(mount_dir=self.cluster.mount_dir,
169+
install_dir=install_dir)
170+
self.cluster.run_script_on_host(script, self.cluster.master)
171+
172+
pa_etc_dir = '/etc/opt/prestoadmin'
173+
connectors_dir = pa_etc_dir + '/connectors'
174+
self.assert_path_exists(self.cluster.master, connectors_dir)
175+
176+
coordinator_dir = pa_etc_dir + '/coordinator'
177+
self.assert_path_exists(self.cluster.master, coordinator_dir)
178+
179+
workers_dir = pa_etc_dir + '/workers'
180+
self.assert_path_exists(self.cluster.master, workers_dir)

0 commit comments

Comments
 (0)