blob: fe0fff3a092d623287ba0ab9e49b586010c3abdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# This playbook install the PhpSysInfo (http://rk4an.github.com/phpsysinfo/)
# php application.
#
# Copyright (c) 2013 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- name: download the phpsysinfo source tarball
get_url: url=https://github.com/rk4an/phpsysinfo/archive/v$phpsysinfo_version.tar.gz
dest=/usr/share/webapps/phpsysinfo-$phpsysinfo_version.tar.gz
mode=0440
- name: unpack the source tarball
command: /bin/tar -xzf /usr/share/webapps/phpsysinfo-$phpsysinfo_version.tar.gz -C /usr/share/webapps/
- name: rename the source directory
command: /bin/mv /usr/share/webapps/phpsysinfo-$phpsysinfo_version /usr/share/webapps/phpsysinfo
- name: delete the archive
file: path=/usr/share/webapps/phpsysinfo-$phpsysinfo_version.tar.gz
state=absent
- name: copy the default config file
command: /bin/cp /usr/share/webapps/phpsysinfo/phpsysinfo.ini.new /usr/share/webapps/phpsysinfo/phpsysinfo.ini
- name: set the permissions
file: path=/usr/share/webapps/
mode=0777
state=directory
- name: create a symlink to the webserver root
file: src=/usr/share/webapps/phpsysinfo/
dest=/var/www/localhost/htdocs/phpsysinfo
owner=root
group=root
state=link
|