Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Update os version limit (#732) #734

Merged
merged 1 commit into from
Apr 10, 2019
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
4 changes: 2 additions & 2 deletions roles/check_system_static/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
msg: "System versions lower than Red Hat Enterprise Linux / CentOS 7.3 have been deprecated. Please use CentOS 7.3 and above. See https://github.com/pingcap/docs/blob/master/op-guide/recommendation.md"
when:
- ansible_os_family == 'RedHat'
- ansible_distribution != 'Amazon'
- ansible_distribution_version < '7.3'
- ansible_distribution in ['CentOS', 'RedHat']
- ansible_distribution_major_version != '7'

- name: Deploy epollexclusive script
copy: src="{{ script_dir }}/check/epollexclusive" dest="{{ deploy_dir }}/epollexclusive" mode=0755
Expand Down