View _chef_bootstrap_ubuntu1204.txt
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
Chef client and server bootstrap scripts/configs for Ubuntu 12.04LTS Server amd64. |
View MyVeeamReport.ps1
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
#Requires -Version 4 | |
<# | |
.Notes | |
NAME: MyVeeamReport.ps1 | |
AUTHOR: Virgil@endless.net.au | |
CREATED: 22/02/2014 | |
LASTEDIT: 13/01/2016 | |
View git-install-intro.md
Installing Git – the easy way
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
View README-Template.md
Project Title
One Paragraph of project description goes here
Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Prerequisites
View detect-os.sh
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 bash | |
# "unofficial" bash strict mode | |
# See: http://redsymbol.net/articles/unofficial-bash-strict-mode | |
set -o errexit # Exit when simple command fails 'set -e' | |
set -o errtrace # Exit on error inside any functions or subshells. | |
set -o nounset # Trigger error when expanding unset variables 'set -u' | |
set -o pipefail # Do not hide errors within pipes 'set -o pipefail' | |
IFS=$'\n\t' |