This file contains 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
# Toggle mouse on with ^B m | |
bind m \ | |
set -g mode-mouse on \;\ | |
set -g mouse-resize-pane on \;\ | |
set -g mouse-select-pane on \;\ | |
set -g mouse-select-window on \;\ | |
display 'Mouse: ON' | |
# Toggle mouse off with ^B M | |
bind M \ |
This file contains 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
windows_package { 'Microsoft .NET Framework 4 Client Profile': | |
ensure => installed, | |
source => 'C:/dotNetFx40_Full_x86_x64.exe', | |
install_options => ['/q', '/norestart'], | |
} |
This file contains 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
#package { '{45E908F3-EBB6-4214-9799-FB429B3213CA}': | |
package { 'SNK': | |
name => 'SNK', | |
#name => '{45E908F3-EBB6-4214-9799-FB429B3213CA}', | |
ensure => installed, | |
source => 'C:\modules\files\SNK.msi', | |
provider => 'msi', | |
} |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
# vagrant-pe_build settings | |
config.pe_build.download_root = 'https://s3.amazonaws.com/pe-builds/released' | |
config.pe_build.version = '2.7.1' | |
config.pe_build.suffix = 'ubuntu-12.04-amd64' | |
config.pe_build.filename = 'puppet-enterprise-2.7.1-ubuntu-12.04-amd64.tar.gz' |
This file contains 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
# Define log file names | |
if ! $access_log_file and ! $access_log_pipe { | |
if $ssl { |
This file contains 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
# Define log file names | |
if $access_log_file { | |
$access_log_destination = "${logroot}/${access_log_file}" |
This file contains 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
<root> | |
<foo> I'm static and part of the type controlling a </foo> | |
<bar> | |
<baz> | |
<name> example ONE </name> | |
<comment> i'm a baz type that exists in /root/bar </comment> | |
</baz> | |
<baz> | |
<name> example TWO </name> | |
<comment> i'm a baz type that exists in /root/bar </comment> |
This file contains 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
file { 'app-cache-config': | |
ensure => file, | |
path => '/tmp/coh-example.xml', | |
owner => 'nobody', | |
group => 'nobody', | |
mode => '0777', | |
} | |
cohcacheconfig { 'application-cache-config': | |
ensure => present, |
This file contains 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
#!/usr/bin/env ruby | |
require 'etc' | |
require 'FileUtils' | |
box_dir = "#{Etc.getpwuid.dir}/.vagrant.d/boxes" | |
printf "Attempting to upgrade your baseboxes in #{box_dir}\n" | |
Dir.entries(box_dir).each do |box| | |
next if ['.','..'].include? box |
This file contains 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
def filename | |
if @filename == UNSET_VALUE | |
return "puppet-enterprise-#{version}-#{suffix}.tar.gz" | |
end | |
@filename | |
end |
OlderNewer