Skip to content

Commit

Permalink
disable colord
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaimie Withers committed Sep 29, 2024
1 parent 6858ccf commit 62210c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
schemaVersion: 1.0.0
name: tre-service-guacamole-linuxvm-ouh2
version: 1.0.9
version: 1.0.10
description: "An Azure TRE User Resource Template for Guacamole (Linux)"
dockerfile: Dockerfile.tmpl
registry: azuretre
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ set -o nounset
# Remove apt sources not included in sources.list file
sudo rm -f /etc/apt/sources.list.d/*


# Update apt packages from configured Nexus sources
echo "init_vm.sh: START"
sudo apt update || true
Expand All @@ -35,6 +36,10 @@ sudo -u "${VM_USER}" -i bash -c 'echo xset -dpms >> ~/.xsession'
sudo systemctl enable xrdp
sudo service xrdp restart

# Disable colord service if color management is not required
sudo systemctl disable colord
sudo systemctl stop colord

## Python 3.8 and Jupyter
sudo apt install -y jupyter-notebook microsoft-edge-dev

Expand Down

0 comments on commit 62210c8

Please sign in to comment.