This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DLAB-2052 in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit 1555bbfdbd0d683138217e5ebf8dbbf2836201f7 Author: leonidfrolov <[email protected]> AuthorDate: Tue Sep 15 15:53:20 2020 +0300 [DLAB-2052]: fixed rstudio-server.service path --- .../src/general/lib/os/debian/notebook_lib.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py index 586ca8c..ea1bfd5 100644 --- a/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py +++ b/infrastructure-provisioning/src/general/lib/os/debian/notebook_lib.py @@ -125,17 +125,17 @@ def install_rstudio(os_user, local_spark_path, rstudio_pass, rstudio_version): sudo('chown {0}:{0} /mnt/var'.format(os_user)) http_proxy = run('echo $http_proxy') https_proxy = run('echo $https_proxy') - sudo("sed -i '/Type=forking/a \Environment=USER=dlab-user' /lib/systemd/system/rstudio-server.service") - sudo("sed -i '/ExecStart/s|=/usr/lib/rstudio-server/bin/rserver|=/bin/bash -c \"export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/cudnn/lib64:/usr/local/cuda/lib64; /usr/lib/rstudio-server/bin/rserver --auth-none 1|g' /lib/systemd/system/rstudio-server.service") - sudo("sed -i '/ExecStart/s|$|\"|g' /lib/systemd/system/rstudio-server.service") + sudo("sed -i '/Type=forking/a \Environment=USER=dlab-user' /etc/systemd/system/rstudio-server.service") + sudo("sed -i '/ExecStart/s|=/usr/lib/rstudio-server/bin/rserver|=/bin/bash -c \"export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/cudnn/lib64:/usr/local/cuda/lib64; /usr/lib/rstudio-server/bin/rserver --auth-none 1|g' /etc/systemd/system/rstudio-server.service") + sudo("sed -i '/ExecStart/s|$|\"|g' /etc/systemd/system/rstudio-server.service") sudo( - 'sed -i \'/\[Service\]/a Environment=\"HTTP_PROXY={}\"\' /lib/systemd/system/rstudio-server.service'.format( + 'sed -i \'/\[Service\]/a Environment=\"HTTP_PROXY={}\"\' /etc/systemd/system/rstudio-server.service'.format( http_proxy)) sudo( - 'sed -i \'/\[Service\]/a Environment=\"HTTPS_PROXY={}\"\' /lib/systemd/system/rstudio-server.service'.format( + 'sed -i \'/\[Service\]/a Environment=\"HTTPS_PROXY={}\"\' /etc/systemd/system/rstudio-server.service'.format( https_proxy)) java_home = run("update-alternatives --query java | grep -o \'/.*/java-8.*/jre\'").splitlines()[0] - sudo('sed -i \'/\[Service\]/ a\Environment=\"JAVA_HOME={}\"\' /lib/systemd/system/rstudio-server.service'.format( + sudo('sed -i \'/\[Service\]/ a\Environment=\"JAVA_HOME={}\"\' /etc/systemd/system/rstudio-server.service'.format( java_home)) sudo("systemctl daemon-reload") sudo('touch /home/{}/.Renviron'.format(os_user)) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
