Commit f84e3ed7 authored by nanahira's avatar nanahira

inits

parent 4216be62
Pipeline #4693 failed with stage
in 10 seconds
......@@ -26,16 +26,11 @@
apt:
name: universal-ctags
when: ansible_distribution == 'Debian' or ansible_distribution_major_version|int >= 20
- name: non-focal packages
become: true
apt:
name: python-setuptools,python-dev,python-pip
when: ansible_distribution_major_version|int < 20 and ansible_distribution_release != 'sid'
- name: focal packages
- name: python-is-python3
become: true
apt:
name: python-is-python3
when: ansible_distribution_major_version|int >= 20
when: (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int >= 20) or (ansible_distribution == 'Debian' and ansible_distribution_major_version|int >= 11)
- name: pve kernel header
become: true
apt:
......
......@@ -40,11 +40,6 @@
update_cache: yes
when: ansible_os_family == 'Debian'
notify: restart_docker
- name: Docker extra packages
become: true
apt:
name: python-backports-shutil-get-terminal-size,python-backports.ssl-match-hostname
when: ansible_os_family == 'Debian' and ansible_distribution_release != 'sid' and ansible_distribution_major_version|int < 20
- name: clean yum Docker
become: true
yum:
......
......@@ -62,6 +62,7 @@
- 3.6
- 3.7
- 3.8
- 3.9
- name: upgrade pip
become: true
pip:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment