25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- - hosts: localhost
- become: yes
- become_user: root
-
- vars:
- bench_repo_path: "/Users/{{ ansible_user_id }}/.bench"
- bench_path: "/Users/{{ ansible_user_id }}/xhiveframework-bench"
-
- tasks:
- - name: install prequisites
- homebrew:
- name:
- - cmake
- - redis
- - mariadb
- - nodejs
- state: present
-
- - name: install wkhtmltopdf
- homebrew_cask:
- name:
- - wkhtmltopdf
- state: present
-
- - name: configure mariadb
- include: roles/mariadb/tasks/main.yml
- vars:
- mysql_conf_tpl: roles/mariadb/files/mariadb_config.cnf
-
- - name: Install MySQLdb in global env
- pip: name=mysql-python version=1.2.5
-
- # setup xhiveframework-bench
- - include: includes/setup_bench.yml
-
- # setup development environment
- - include: includes/setup_dev_env.yml
- when: not production
-
- ...
|