1
0
mirror of https://github.com/krislamo/vagrant-easyredmine synced 2024-09-19 15:30:34 +00:00
This commit is contained in:
Mark Heiges 2015-11-11 11:43:48 -05:00
commit 459abad2e2
13 changed files with 372 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.DS_Store
.vagrant
scratch/*
!.gitignore

23
Vagrantfile vendored Normal file
View File

@ -0,0 +1,23 @@
IP='192.168.100.150'
Vagrant.configure(2) do |config|
config.ssh.forward_agent = 'true'
config.vm.box = "ebrc/centos-7.1-64-nocm"
config.vm.box_url = 'http://software.apidb.org/vagrant/centos-7.1-64-nocm.json'
config.vm.hostname = 'redmine.vm.apidb.org'
config.vm.network :private_network, ip: IP
if Vagrant.has_plugin?('landrush')
config.landrush.enabled = true
config.landrush.tld = 'vm.apidb.org'
config.landrush.host 'redmine.vm.apidb.org', IP
config.landrush.host_ip_address = IP
end
config.vm.provision :ansible do |ansible|
ansible.playbook = 'playbook.yml'
end
end

9
playbook.yml Normal file
View File

@ -0,0 +1,9 @@
---
- hosts: all
sudo: yes
gather_facts: True
roles:
- { role: easyredmine, sudo: no }
tasks:

View File

@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).

View File

@ -0,0 +1,2 @@
---
# defaults file for easyredmine

View File

@ -0,0 +1,7 @@
---
# handlers file for easyredmine
- name: restart nginx
service: name=nginx
state=restarted
sudo: yes

View File

@ -0,0 +1,139 @@
---
galaxy_info:
author: your name
description:
company: your company (optional)
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: http://example.com/issue/tracker
# Some suggested licenses:
# - BSD (default)
# - MIT
# - GPLv2
# - GPLv3
# - Apache
# - CC-BY
license: license (GPLv2, CC-BY, etc)
min_ansible_version: 1.2
#
# Below are all platforms currently available. Just uncomment
# the ones that apply to your role. If you don't see your
# platform on this list, let us know and we'll get it added!
#
#platforms:
#- name: EL
# versions:
# - all
# - 5
# - 6
# - 7
#- name: GenericUNIX
# versions:
# - all
# - any
#- name: Fedora
# versions:
# - all
# - 16
# - 17
# - 18
# - 19
# - 20
# - 21
# - 22
#- name: Windows
# versions:
# - all
# - 2012R2
#- name: SmartOS
# versions:
# - all
# - any
#- name: opensuse
# versions:
# - all
# - 12.1
# - 12.2
# - 12.3
# - 13.1
# - 13.2
#- name: Amazon
# versions:
# - all
# - 2013.03
# - 2013.09
#- name: GenericBSD
# versions:
# - all
# - any
#- name: FreeBSD
# versions:
# - all
# - 8.0
# - 8.1
# - 8.2
# - 8.3
# - 8.4
# - 9.0
# - 9.1
# - 9.1
# - 9.2
#- name: Ubuntu
# versions:
# - all
# - lucid
# - maverick
# - natty
# - oneiric
# - precise
# - quantal
# - raring
# - saucy
# - trusty
# - utopic
# - vivid
#- name: SLES
# versions:
# - all
# - 10SP3
# - 10SP4
# - 11
# - 11SP1
# - 11SP2
# - 11SP3
#- name: GenericLinux
# versions:
# - all
# - any
#- name: Debian
# versions:
# - all
# - etch
# - jessie
# - lenny
# - squeeze
# - wheezy
#
# Below are all categories currently available. Just as with
# the platforms above, uncomment those that apply to your role.
#
#categories:
#- cloud
#- cloud:ec2
#- cloud:gce
#- cloud:rax
#- clustering
#- database
#- database:nosql
#- database:sql
#- development
#- monitoring
#- networking
#- packaging
#- system
#- web
dependencies: []
# List your role dependencies here, one per line.
# Be sure to remove the '[]' above if you add dependencies
# to this list.

View File

@ -0,0 +1,6 @@
- yum: name='{{ item }}'
sudo: yes
with_items:
- mysql-devel
- mariadb-server
- MySQL-python

View File

@ -0,0 +1,102 @@
---
# tasks file for easyredmine
# - copy: src=nginx.repo
# dest=/etc/yum.repos.d/nginx.repo
# owner=root
# group=root
# mode=0644
# sudo: yes
- yum: name=epel-release
sudo: yes
- get_url: url=https://oss-binaries.phusionpassenger.com/yum/definitions/el-passenger.repo
dest=/etc/yum.repos.d/passenger.repo
sudo: yes
- rpm_key: key=https://packagecloud.io/gpg.key
sudo: yes
# this makecache is mostly because I can not find any other way to fully import the GPG.
# key for the Passenger repo. 'rpm --import' is not sufficient.
- command: yum -q makecache -y --disablerepo='*' --enablerepo='passenger*'
sudo: yes
changed_when: False
- yum: name='{{ item }}'
sudo: yes
with_items:
- unzip
- rubygems
- ruby-devel
- zlib-devel
- openssl-devel
- gcc-c++
- mysql-devel
- ImageMagick-devel
- mariadb-server
- MySQL-python
- nginx
- passenger
- gem: name='{{ item }}'
sudo: yes
with_items:
- bundler
- redmine-installer
- stat: path='{{ cache_dir }}/{{ installer_package }}'
register: has_installer_package
- name: download installer
get_url: url='http://software.apidb.org/source/{{ installer_package }}'
dest='{{ cache_dir }}'
mode=0640
force=no
when: has_installer_package.stat.exists == False
- service: name='{{ redmine_db_service }}'
state=started
sudo: yes
- mysql_db: name='{{ redmine_db_name }}'
state=present
encoding=utf8
sudo: yes
- mysql_user: name='{{ redmine_db_user }}'
password='{{ redmine_db_password }}'
append_privs=yes
priv='{{ redmine_db_name }}.*:ALL'
state=present
sudo: yes
#- command: ~/bin/redmine install '{{ cache_dir }}/{{ installer_package }}'
# sudo: no
- template: dest=/etc/nginx/conf.d/easyredmine.conf
src=easyredmine.conf.j2
sudo: yes
notify: restart nginx
- template: dest=/etc/nginx/conf.d/passenger.conf
src=passenger.conf.j2
sudo: yes
notify: restart nginx
- service: name=nginx
state=started
sudo: yes
# {{ redmine_root }}
# 1
# {{ redmine_db_name }}
# {{ redmine_db_host }}
# {{ redmine_db_user }}
# {{ redmine_db_password }}
# {{ redmine_db_encoding }}
# {{ redmine_db_port }}
# 2
# {{ sendmail_path }}
# {{ sendmail_args }}

View File

@ -0,0 +1,6 @@
server {
listen 80;
server_name {{ ansible_fqdn }};
root {{ redmine_root }}/public;
passenger_enabled on;
}

View File

@ -0,0 +1,5 @@
passenger_root /usr/share/ruby/vendor_ruby/phusion_passenger/locations.ini;
passenger_ruby /usr/bin/ruby;
passenger_instance_registry_dir /var/run/passenger-instreg;

View File

@ -0,0 +1,25 @@
---
# vars file for easyredmine
cache_dir: /vagrant/scratch
installer_package: easyredmine_package_u2072_d201511101601.zip
mysql_dump: redmine_2015-11-10_03h09m.Tuesday.sql.gz
redmine_root: /opt/easyredmine
redmine_db_service: mariadb
redmine_db_name: easyredmine
redmine_db_host: localhost
redmine_db_user: redmine
redmine_db_password: '@redmin3r'
redmine_db_encoding: utf8
redmine_db_port: 3306
redmine_email_addr: mheiges@uga.edu
redmine_email_port: 587
sendmail_path: /usr/sbin/sendmail
sendmail_args: -i -t

5
scratch/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.DS_Store
.vagrant
!.gitignore