Skip to content

Commit

Permalink
Merge pull request #206 from grycap/devel
Browse files Browse the repository at this point in the history
Fix error with ntp
  • Loading branch information
micafer authored Nov 18, 2024
2 parents 06b4288 + 0b397b3 commit 9651d64
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions artifacts/galaxy/galaxy_portal_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
connection: local
vars:
vnode_prefix: vnode-
pre_tasks:
# Avoid error in ntp installation in Debian
- name: Remove systemd-timesyncd in Debian systems
package:
name: systemd-timesyncd
state: absent
ignore_errors: true
when: ansible_family == "Debian"
roles:
- role: 'grycap.nfs'
nfs_mode: 'front'
Expand Down
8 changes: 8 additions & 0 deletions artifacts/galaxy/galaxy_wn_configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
connection: local
vars:
vnode_prefix: vnode-
pre_tasks:
# Avoid error in ntp installation in Debian
- name: Remove systemd-timesyncd in Debian systems
package:
name: systemd-timesyncd
state: absent
ignore_errors: true
when: ansible_family == "Debian"
roles:
- role: 'grycap.nfs'
nfs_mode: 'wn'
Expand Down

0 comments on commit 9651d64

Please sign in to comment.