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

15 lines
309 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: python3
state: present