Ansible Roleシステム環境の【nodejs】
997 ワード
Ansible Role:nodejs
nodejsをインストールします
要求
このキャラクターはRHELとデリバティブのみで動作します.
テスト環境
ansible
ありません
githubアドレス
https://github.com/kuailemy123/Ansible-roles/tree/master/nodejs
Example Playbook
nodejsをインストールします
要求
このキャラクターはRHELとデリバティブのみで動作します.
テスト環境
ansible
2.2.1.0
OS Centos 6.7 X64
キャラクタ変数software_files_path: "/opt/software"
software_install_path: "/usr/local"
nodejs_version: "0.10.36"
nodejs_file: "node-v{{ nodejs_version }}-linux-x64.tar.gz"
nodejs_file_path: "{{ software_files_path }}/{{ nodejs_file }}"
nodejs_file_url: "http://nodejs.org/dist/v{{ nodejs_version }}/{{ nodejs_file }}"
npm_config_prefix: "{{ nodejs_install_path }}/nodejs"
npm_registry: "http://npmreg.mirrors.ustc.edu.cn/"
nodejs_npm_global_packages:
- {'name': 'forever'}
依存ありません
githubアドレス
https://github.com/kuailemy123/Ansible-roles/tree/master/nodejs
Example Playbook
- hosts: servers
roles:
- nodejs
- hosts: server
roles:
- { role: nodejs, nodejs_version: "0.12.9"}