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 'jira' | |
require 'pp' | |
require 'getoptlong' | |
# default values | |
username = "gepetto-bot" | |
password = ENV["GEPETTO_BOT_PASSWORD"] |
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
Chocolatey is running on Windows v 10.0.14286.0 | |
Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old". | |
Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old". | |
Command line: "C:\ProgramData\chocolatey\choco.exe" install -y eraser --debug --verbose | |
Received arguments: install -y eraser --debug --verbose | |
NOTE: Hiding sensitive configuration data! Please double and triple | |
check to be sure no sensitive data is shown, especially if copying | |
output to a gist for review. | |
Configuration: CommandName='install'| |
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
class blue::websites { | |
# this creates the root website | |
iis_site { 'dovetail': | |
ensure => 'present', | |
bindings => 'http/*:80', | |
} | |
iis_app {'dovetail/': | |
ensure => 'present', | |
applicationpool => 'DefaultAppPool', | |
} |