blob: 897bc6790780e22e3d54dabf32f5711e222a0ba9 (
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
|
# This playbook install phpshell (http://phpshell.sourceforge.net/).
#
# Copyright (c) 2013 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- name: download the source tarball
get_url: url=http://prdownloads.sourceforge.net/phpshell/phpshell-$phpshell_version.tar.gz
dest=/usr/share/webapps/phpshell-$phpshell_version.tar.gz
mode=0440
- name: unpack the source tarball
command: /bin/tar -xzf /usr/share/webapps/phpshell-$phpshell_version.tar.gz -C /usr/share/webapps/
- name: rename the source directory
command: /bin/mv /usr/share/webapps/phpshell-$phpshell_version /usr/share/webapps/phpshell
- name: delete the archive
file: path=/usr/share/webapps/phpshell-$phpshell_version.tar.gz
state=absent
- 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/phpshell/
dest=/var/www/localhost/htdocs/phpshell
owner=root
group=root
state=link
|