diff --git a/hello_world.yml b/hello_world.yml index 20632c61..5d09f11d 100644 --- a/hello_world.yml +++ b/hello_world.yml @@ -1,7 +1,8 @@ -- name: Hello World Sample - hosts: all +--- +- hosts: localhost + connection: local tasks: - - name: Hello Message - debug: - msg: "Hello World!" + - name: print the OS name + debug: + msg: "you are running scripts on {{ ansible_system }}"