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

Chrome Remote Desktop: increase resilience of apt operations #3093

Merged
merged 2 commits into from
Oct 8, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,20 @@
- name: Ensure Desktop OS and Chrome Remote Desktop is installed
hosts: localhost
become: true
module_defaults:
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
tasks:
- name: Install desktop packages
ansible.builtin.apt:
name:
- xfce4
- xfce4-goodies
state: present
update_cache: true
register: apt_result
retries: 6
delay: 10
retries: 10
delay: 30
until: apt_result is success

- name: Download and configure CRD
Expand All @@ -42,8 +45,8 @@
environment:
DEBIAN_FRONTEND: noninteractive
register: apt_result
retries: 6
delay: 10
retries: 10
delay: 30
until: apt_result is success

- name: Configure CRD to use Xfce by default
Expand Down
Loading