mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
622 B
23 lines
622 B
9 years ago
|
---
|
||
|
- name: install packages needed to for building modules
|
||
|
action: apt update_cache=no pkg={{ item }} state=installed
|
||
|
with_items:
|
||
|
- build-essential
|
||
|
- autoconf
|
||
|
- git-core
|
||
|
|
||
|
- name: install nginx webserver
|
||
|
action: apt update_cache=no pkg=nginx state=installed
|
||
|
|
||
|
- name: install supervisord
|
||
|
action: apt update_cache=no pkg=supervisor state=installed
|
||
|
|
||
|
- name: install postfix
|
||
|
action: apt update_cache=no pkg=postfix state=installed
|
||
|
|
||
|
- name: install redis
|
||
|
action: apt name=redis-server update_cache=yes state=latest
|
||
|
|
||
|
- name: create app user
|
||
|
action: user createhome=no name={{ app_name }} state=present
|