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
Section "InputClass" | |
Identifier "DualPoint Stick blacklist" | |
MatchProduct "DualPoint Stick" | |
Option "Ignore" "on" | |
EndSection |
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
$sourceNugetExe = "http://nuget.org/nuget.exe" | |
$targetNugetExe = "$env:TEMP\nuget.exe" | |
Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe | |
$p = Start-Process $targetNugetExe -ArgumentList "install NuGet.CommandLine -Output $env:ProgramData -ExcludeVersion -NonInteractive" -wait -NoNewWindow -PassThru | |
Remove-Item $targetNugetExe |
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
Name: Create home directory during login | |
Default: yes | |
Priority: 0 | |
Session-Interactive-Only: yes | |
Session-Type: Additional | |
Session-Final: | |
required pam_mkhomedir.so skel=/etc/skel umask=0022 |
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
{% from "map.jinja" import map with context %} | |
jdk: | |
cacert: {{ map.cacert }} |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# This configuration requires Vagrant 1.5 or newer and three plugins: | |
# | |
# vagrant plugin install vagrant-hosts ~> 2.1.4 | |
# vagrant plugin install vagrant-auto_network ~> 1.0.0 | |
# vagrant plugin install vagrant-vbguest ~> 0.10.0 | |
# | |
# After installation, the following steps will spin up a master and agent that |
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
''' | |
@author Bommarito Consulting, LLC | |
@date 20120622 | |
Identify and, if requested, remove orphaned snapshots from an EC2 account. | |
''' | |
# Imports | |
import boto |
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
case $::hostname { | |
/^gphapaadm(2|3|4|5|6|7)$/ : { | |
$els_host = 'elsvipprd1.ddtc.cmgdigital.com' | |
$els_port = '9200' | |
$gph_host = 'graphite2.ddtc.cmgdigital.com' | |
$gph_port = '80' | |
} | |
default : { fail("elasticsearch host not set been for ${::hostname} in graphite::webapp") } | |
} |
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
jbouse@jbouse:~$ puppet apply test.pp --verbose | |
Notice: Scope(Set_password[passwd1]): passwd1 .x/5FQ/ | |
Notice: Scope(Set_password[passwd2]): passwd2 $1$RCxCmL.x$MRHrLKqYpha19ERGC/5FQ/ | |
Notice: Compiled catalog for jbouse.example.com in environment production in 0.06 seconds | |
Info: Applying configuration version '1391626332' | |
Notice: Finished catalog run in 0.40 seconds |
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
#!/usr/bin/env ruby | |
# Copyright 2014 Jeremy T. Bouse | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |