285:30fd0d2a81ce
Anton Shestakov <av6@dwimlabs.net>, Sat, 16 Sep 2017 22:29:17 +0800
Make: use npm update for devel target package.json says we want coffee-script >= 1.6.1, so that's what `make devel` should install (the newest version): since .js source is tracked, there's no risk of running into breaking changes in coffee-script outside of test environment. But running into such changes during tests is OK and even potentially desirable.

next change 309:f8c525ff01cd
previous change 211:4b03f725cb69

contrib/provision/roles/common/tasks/main.yml

Permissions: -rw-r--r--

Other formats: Feeds:
---
- name: Set timezone {{ timezone }}
template:
src: etc/timezone
dest: /etc/timezone
notify:
- update timezone
- name: Generate locale
locale_gen:
name: '{{ locale }}'
- name: Set system locale
command: update-locale LANG={{ locale }}
- name: Install base packages
apt:
update_cache: yes
cache_valid_time: 3600
pkg: '{{ item }}'
state: present
with_items:
- ca-certificates
- openntpd
- ufw
tags: [packages]
- name: Stop installing recommends
copy:
src: etc/apt/apt.conf.d/99recommends
dest: /etc/apt/apt.conf.d/99recommends
- name: Allow ssh access
ufw:
rule: allow
name: OpenSSH
tags: [ufw]
- name: Enable ufw
ufw:
state: enabled
tags: [ufw]
...