Ansible_DataDiode/roles/install-datadiode.yml
ArdavanPb 6342cc01ae edit
2025-07-22 11:00:50 +03:30

20 lines
425 B
YAML

---
- name: Install Git and Python
hosts: All_server
become: yes # برای اجرای دستورات با دسترسی ریشه
tasks:
- name: Install Git
zypper:
name: git
state: present
- name: Install Python
zypper:
name: python311
state: present
- name: Install libgthread-2.0-0
zypper:
name: libgthread-2_0-0
state: present