-
Notifications
You must be signed in to change notification settings - Fork 5
/
Vagrantsettings.yml
93 lines (75 loc) · 2.52 KB
/
Vagrantsettings.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
# Default vagrant settings file.
#
# You can copy this file to "Vagrantsettings.local.yml" and configure it.
#
# For more information:
# @see https://github.com/devgateway/happy-deployer
#
########################################
# Project specific settings.
# VM specific infromation:
# - vm_hostonlyip should be unique among your virtual machines.
# - the VM hostname is created using vm_shortname and vm_environment.
vm_hostonlyip: 10.10.10.165
vm_shortname: dgthree
vm_environment: local
# Vhosts and shared folders:
# - template is the name of the template used to create the vhost.
# - source points to a folder on the host OS, it can be a relative path.
# - docroot points to a folder in the gues where source is mounted.
vhosts:
- domain: dgthree-local.dev
aliases:
- www.dgthree-local.dev
template: jekyll
source: ./
docroot: /var/www/dgthree-local
jekyll_destination: _site
########################################
# Vagrant settings.
# Default VM box.
box:
name: sl6201502
url: http://user.developmentgateway.org/~wschneider/scientific-6-201502.box
download_checksum: a73dfd9f73161c32acc0c57f91071e77
download_checksum_type: md5
########################################
# Puppet settings.
# Enable puppet development "mode".
puppet_development: 0
# Default options for the "puppet apply"
# NOTE: "--parser future" is required!
puppet_options:
--parser future
--verbose
--debug
# Development options for the "puppet apply"
# NOTE: "--parser future" is required!
puppet_options_dev:
--parser future
--verbose
--debug
####################
# Puppet settings for non-development mode:
puppet_module_name: SchnWalter/happydev
puppet_module_version: 0.2.11
# HACK-ishly remove existing modules and then reinstall.
puppet_force_reinstall: 0
puppet_manifest_file_contents: |
node default {
# Dump facts to /tmp/facts.yaml
# include ::happydev::fairy_dust::debug_helper
include ::happydev::rhel
include ::happydev::fairy_dust::orange_blossom
include ::happydev::fairy_dust::vanilla_cream
include ::happydev::jekyll
}
####################
# Puppet settings for development mode:
# Relative or absolute path pointing to the local development happy-deployer files.
# NOTE: Do NOT add a trailing slash (/).
happy_deployer_path: ../happy-deployer
# Alternative (development) manifest file, located in the puppet/manifests folder inside happy-deployer:
# Replaces puppet_manifest_file_contents only when in puppet development "mode".
puppet_alternative_manifest_file: dev-dg.pp