Created
November 10, 2015 14:31
-
-
Save hagbarddenstore/48634000903678dcfeef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Check if bash is installed | |
stat: | |
path=/bin/bash | |
register: bash_installed | |
- name: Install bash | |
get_url: | |
dest=/bin/bash | |
url=https://bash.org/download | |
when: bash_installed | success |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment