Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NICE DCV: fix for Ubuntu 18.04 and 20.04 #3359

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions workflows/pipe-common/shell/nice_dcv_setup
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Copyright 2021 EPAM Systems, Inc. (https://www.epam.com/)
# Copyright 2021-2023 EPAM Systems, Inc. (https://www.epam.com/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -35,7 +35,7 @@ function install_prerequisites {
_pkg_result=$?
else
apt update -y && \
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends ubuntu-desktop
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends ubuntu-desktop xfce4 xfce4-terminal
_pkg_result=$?
fi
if [ $_pkg_result -ne 0 ]; then
Expand Down
Loading