aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/bootstrap.yml
blob: 4af022c9a0d743b4229401221a90f67b6eb035a8 (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
38
39
# This playbook install the bootstrap (http://twitter.github.com/bootstrap/)
# javascript framework.
#
# Copyright (c) 2013 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- name: download the bootstrap zip archive
  get_url: url=http://twitter.github.com/bootstrap/assets/bootstrap.zip
           dest=/usr/share/webapps/bootstrap.zip
           mode=0440

- name: unpack the archive
  command: /usr/bin/unzip -o /usr/share/webapps/bootstrap.zip -d /usr/share/webapps/

- name: delete the archive
  file: path=/usr/share/webapps/bootstrap.zip
        state=absent

- name: set the right permission
  file: path=/usr/share/webapps/
        mode=0777
        state=directory

- name: create a symlink to the webserver root
  file: src=/usr/share/webapps/bootstrap/
        dest=/var/www/localhost/htdocs/bootstrap
        owner=root
        group=root
        state=link

- name: install a default index.html file
  template: src=files/bootstrap.j2
            dest=/var/www/localhost/htdocs/index.html 
            owner=root
            group=root
            mode=0755
            backup=yes