Skip to content

Instantly share code, notes, and snippets.

@martinrusev
Last active July 20, 2018 19:15
Show Gist options
  • Save martinrusev/20f1f125853937031ce7 to your computer and use it in GitHub Desktop.
Save martinrusev/20f1f125853937031ce7 to your computer and use it in GitHub Desktop.
Ansible install on Debian
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"
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"
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