This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2497 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit f7de31da75a1dbb317474e6c0da2689ea919e9ff Author: leonidfrolov <[email protected]> AuthorDate: Thu Aug 19 15:41:02 2021 +0300 [DATALAB-2497]: fixed cp path --- .../src/zeppelin/scripts/configure_zeppelin_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure-provisioning/src/zeppelin/scripts/configure_zeppelin_node.py b/infrastructure-provisioning/src/zeppelin/scripts/configure_zeppelin_node.py index fc4202e..edbe969 100644 --- a/infrastructure-provisioning/src/zeppelin/scripts/configure_zeppelin_node.py +++ b/infrastructure-provisioning/src/zeppelin/scripts/configure_zeppelin_node.py @@ -104,7 +104,7 @@ def configure_zeppelin(os_user): conn.sudo('chown ' + os_user + ':' + os_user + ' -R /opt/zeppelin-' + zeppelin_version + '-bin-netinst') conn.sudo('mkdir -p /opt/zeppelin/lib/interpreter/') conn.sudo('cp /opt/zeppelin-' + zeppelin_version + '-bin-netinst/interpreter/md/zeppelin-markdown-*.jar /opt/zeppelin/lib/interpreter/') # necessary when executing paragraph launches java process with "-cp :/opt/zeppelin/lib/interpreter/*:" - conn.sudo('cp /opt/zeppelin-' + zeppelin_version + '-bin-netinst/interpreter/shell/zeppelin-shell-*.jar /opt/zeppelin/lib/interpreter/') + conn.sudo('cp /opt/zeppelin-' + zeppelin_version + '-bin-netinst/interpreter/sh/zeppelin-shell-*.jar /opt/zeppelin/lib/interpreter/') except Exception as err: print('Error:', str(err)) sys.exit(1) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
