fixed untracked files

This commit is contained in:
2024-11-13 16:09:39 +00:00
parent b55134d194
commit f833eba32b
5 changed files with 201 additions and 1 deletions

View File

@@ -0,0 +1 @@
Test if it's detected

12
plugin/TestAnsible/hosts Normal file
View File

@@ -0,0 +1,12 @@
---
all:
vars:
ansible_python_interpreter: /usr/bin/python3
main:
hosts:
host1:
ansible_host: 0.0.0.0 # Replace with your remote IP
ansible_port: 44003 # Replace with your remote SSH port
ansible_user: master # Replace wtih your username
ansible_ssh_pass: password
ansible_sudo_pass: password

View File

@@ -0,0 +1,8 @@
---
- hosts: all
tasks:
- name: simple-ansibleplaybook
debug:
msg: Your are running 'simple-ansibleplaybook' example