Ansible_DataDiode/roles/install-datadiode.yml
2025-07-20 17:32:58 +03:30

15 lines
311 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