Create Ansible

This commit is contained in:
ArdavanPb
2025-07-20 17:17:41 +03:30
commit 7b801650ff
12 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- 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