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
source 'https://rubygems.org' | |
gem 'chefspec', '~> 7.0' | |
gem 'chef', '~>13.2' |
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
@echo off | |
echo Launching Putty SSH connection to vagrant in %cd% | |
set VAGRANT_DIR=%cd%\.vagrant\machines\default\virtualbox | |
IF NOT EXIST %VAGRANT_DIR% goto novagrant | |
echo Locating vagrant forwarded SSH port | |
vagrant port --guest 22 > "%VAGRANT_DIR%\ssh_port" | |
if %errorlevel% neq 0 goto error | |
set /p SSH_PORT=<"%VAGRANT_DIR%\ssh_port" |
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
{ | |
"require": { | |
"aws/aws-sdk-php": "*" | |
} | |
} |
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
#!/bin/bash | |
# Cronic v2 - cron job report wrapper | |
# Copyright 2007 Chuck Houpt. No rights reserved, whatsoever. | |
# Amended 2013 Andrew Coulton. | |
# Public Domain CC0: http://creativecommons.org/publicdomain/zero/1.0/ | |
# Basic usage, to run a task and discard the output unless it fails or outputs to STDERR | |
# cronic /run/my/task | |
# |
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
#!/bin/bash | |
# github-connect.sh | |
# ----------------- | |
# Copyright 2012 Andrew Coulton - released under the BSD licence | |
# | |
# A simple command line script to set up and register an SSH key against a | |
# user's github account - for example when provisioning a new virtual | |
# machine for a developer. | |
# |