Last active
July 20, 2018 19:15
-
-
Save martinrusev/20f1f125853937031ce7 to your computer and use it in GitHub Desktop.
Ansible install on Debian
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
echo 'deb http://http.debian.net/debian-backports squeeze-backports(-sloppy) main' > /etc/apt/sources.list.d/backports.list | |
apt-get update | |
apt-get -t squeeze-backports install "ansible" |
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
echo 'deb http://http.debian.net/debian wheezy-backports main' > /etc/apt/sources.list.d/backports.list | |
apt-get update | |
apt-get -t wheezy-backports install "ansible" |
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
echo 'deb http://http.debian.net/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list | |
apt-get update | |
apt-get -t jessie-backports install "ansible" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment