表題の通り。Vagrantで起動したCentOSにAnsibleをインストールした。
■ 環境
- CentOS 6.6
- Ansible 1.9.2
■ Ansible
通常使用可能なレポジトリにはAnsibleは入っていないので、以前のエントリの通り、EPELレポジトリを有効にする。
$ sudo yum search ansible
:
=============== N/S Matched: ansible ===============
ansible-lint.noarch : Best practices checker for Ansible
ansible-inventory-grapher.noarch : Creates graphs representing ansible inventory
ansible.noarch : SSH-based configuration management, deployment, and task execution system
:
$
EPELレポジトリには入っていることが確認できるのでインストールする。
$ sudo yum install ansible
正常にインストールされたので確認。
$ which ansible
/usr/bin/ansible
$ ansible --version
ansible 1.9.2
configured module search path = None
$
以上。