./winetricks -f corefonts vcrun6 vb5run native_oleaut32 vcrun2010 richtx32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local dt = require "date_time" | |
local ip = require "ip_address" | |
local l = require 'lpeg' | |
local syslog = require "syslog" | |
l.locale(l) | |
local msg = { | |
Timestamp = nil, | |
Hostname = nil, | |
Payload = nil, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vm and role mapping for multi-vm vagrant | |
boxes = [ | |
{ :name => :app, :roles => ['base', 'web'] }, | |
{ :name => :mc, :roles => ['base', 'memcache'] }, | |
{ :name => :db, :roles => ['base', 'db-master'] }, | |
{ :name => :util, :roles => ['base', 'redis', 'resque' ] }, | |
] | |
Vagrant.configure("2") do |config| | |
# base image configuration |