Skip to content

Instantly share code, notes, and snippets.

@fradee
Created April 16, 2016 17:56
Show Gist options
  • Save fradee/ed9cf6916f0dd390b90f449701a1a837 to your computer and use it in GitHub Desktop.
Save fradee/ed9cf6916f0dd390b90f449701a1a837 to your computer and use it in GitHub Desktop.
Angible gists
# Install percona MySQL server from Ansible Galaxy
- src: Xobb.percona
# Install PHP for RedHat/CentOS/Debian/Ubuntu from Ansible Galaxy
- src: geerlingguy.php
# Install PHP XDebug for Linux from Ansible Galaxy
- src: geerlingguy.php-xdebug
# Install Nginx for Linux/UNIX from Ansible Galaxy
- src: geerlingguy.nginx
# Install Memcached for Linux from Ansible Galaxy
- src: geerlingguy.memcached
# Install Redis from Ansible Galaxy
- src: geerlingguy.redis
# Install general role from github
- src: fradee.general
# Install magentotols role from github
- src: fradee.magentotools
#!/usr/bin/env bash
grep 'src:' requirements.yml | awk -F: '{print $2}' | xargs -I {} -t ansible-galaxy remove {}
ansible-galaxy install -r requirements.yml
@fradee
Copy link
Author

fradee commented Apr 16, 2016

дає вихлоп:

vagrant@lgb:/vagrant/ansible$ sudo ./update-roles.sh
nsible-galaxy remove Xobb.percona
is not installed, skipping.
nsible-galaxy remove geerlingguy.php
is not installed, skipping.
nsible-galaxy remove geerlingguy.php-xdebug
is not installed, skipping.
nsible-galaxy remove geerlingguy.nginx
is not installed, skipping.
nsible-galaxy remove geerlingguy.memcached
is not installed, skipping.
nsible-galaxy remove geerlingguy.redis
is not installed, skipping.
nsible-galaxy remove fradee.general
is not installed, skipping.
nsible-galaxy remove fradee.magentotools
is not installed, skipping.

  • Xobb.percona is already installed, skipping.
  • geerlingguy.php is already installed, skipping.
  • geerlingguy.php-xdebug is already installed, skipping.
  • geerlingguy.nginx is already installed, skipping.
  • geerlingguy.memcached is already installed, skipping.
  • geerlingguy.redis is already installed, skipping.
  • fradee.general is already installed, skipping.
  • fradee.magentotools is already installed, skipping.
    vagrant@lgb:/vagrant/ansible$

де собака зарита?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment