blob: 0bcb96e4eced113d3e6fe55d83c49e609023f87f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This playbook install all needed components for the setup.
#
# Copyright (c) 2013-2018 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
# Archiver tools
- name: install unzip packages
command: /sbin/apk add unzip
- name: for the git module git is needed
command: /sbin/apk add git
# Folder and files
- name: create the 'webapps' directory
file:
path: /usr/share/webapps/
owner: root
group: root
mode: 0777
state: directory
|