View choco pack output on linux
+ docker run --rm --mount type=bind,src=/Users/pete/src/github/bazelbuild/bazel/scripts/packages/chocolatey/bazel-package,dst=/work linuturk/mono-choco pack --verbose --debug /work/bazel.nuspec --outputdirectory /work | |
Chocolatey v0.10.8.0 | |
Chocolatey is running on Linux v 4.9.60.0 | |
Attempting to delete file "opt/chocolatey/chocolatey.dll.old". | |
Attempting to delete file "/opt/chocolatey/choco.exe.old". | |
Attempting to create directory "/opt/chocolatey/helpers". | |
Attempting to create directory "/opt/chocolatey/helpers/functions". | |
Attempting to create directory "/opt/chocolatey/redirects". | |
Attempting to create directory "/opt/chocolatey/tools". | |
Command line: /opt/chocolatey/choco.exe pack --verbose --debug /work/bazel.nuspec --outputdirectory /work --allow-unofficial |
View packer.log
$ PACKER_LOG=1 packer build --only=virtualbox-iso -var 'iso_url=file:///Volumes/PETERMOUNCE/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO' ./vbox-2016.json | |
2017/02/24 11:00:30 [INFO] Packer version: 0.12.2 | |
2017/02/24 11:00:30 Packer Target OS/Arch: darwin amd64 | |
2017/02/24 11:00:30 Built with Go Version: go1.7.4 | |
2017/02/24 11:00:30 Detected home directory from env var: /Users/peter | |
2017/02/24 11:00:30 Using internal plugin for azure-arm | |
2017/02/24 11:00:30 Using internal plugin for digitalocean | |
2017/02/24 11:00:30 Using internal plugin for openstack | |
2017/02/24 11:00:30 Using internal plugin for parallels-iso | |
2017/02/24 11:00:30 Using internal plugin for virtualbox-iso |
View packer output
$ packer build --only=virtualbox-iso -var 'iso_url=file:///Volumes/PETERMOUNCE/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO' ./vbox-2016.json | |
virtualbox-iso output will be in this color. | |
==> virtualbox-iso: Downloading or copying Guest additions | |
virtualbox-iso: Downloading or copying: file:///Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso | |
==> virtualbox-iso: Downloading or copying ISO | |
virtualbox-iso: Downloading or copying: file:///Volumes/PETERMOUNCE/14393.0.160715-1616.RS1_RELEASE_SERVER_EVAL_X64FRE_EN-US.ISO | |
==> virtualbox-iso: Creating floppy disk... | |
virtualbox-iso: Copying files flatly from floppy_files | |
virtualbox-iso: Copying file: answer_files/2016/Autounattend.xml |
View npm output
> npm install | |
npm ERR! addLocal Could not install C:\C:\src\je\cc\tranalytics\shared\loggerfactory | |
npm ERR! Windows_NT 6.3.9600 | |
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" | |
npm ERR! node v5.9.0 | |
npm ERR! npm v3.7.3 | |
npm ERR! path C:\C:\src\je\cc\tranalytics\shared\loggerfactory | |
npm ERR! code ENOENT | |
npm ERR! errno -4058 | |
npm ERR! syscall open |
View Dockerfile
FROM ubuntu | |
RUN apt-get update | |
RUN apt-get -y install curl wget git vim python python-pip python-dev | |
# Install anthracite | |
RUN git clone --recursive https://github.com/Dieterbe/anthracite.git /opt/anthracite | |
add ./config.py /opt/anthracite/config.py |
View Bootstrap-EC2-Windows-CloudInit.ps1
# install 7-zip, curl and vim | |
# (Windows 2012 comes with .NET 4.5 out-of-the-box) | |
# Then use the EC2 tools to create a new AMI from the result, and you have a system | |
# that will execute user-data as a PowerShell script after the instance fires up! | |
# This has been tested on Windows 2012 64bits AMIs provided by Amazon (eu-west-1 ami-a1867dd6) | |
# | |
# Inject this as user-data of a Windows 2012 AMI, like this (edit the adminPassword to your needs): | |
# | |
# <powershell> | |
# Set-ExecutionPolicy Unrestricted |
View Get-WebFile.psm1
## Get-WebFile (aka wget for PowerShell) | |
############################################################################################################## | |
## Downloads a file or page from the web | |
## History: | |
## v3.6 - Add -Passthru switch to output TEXT files | |
## v3.5 - Add -Quiet switch to turn off the progress reports ... | |
## v3.4 - Add progress report for files which don't report size | |
## v3.3 - Add progress report for files which report their size | |
## v3.2 - Use the pure Stream object because StreamWriter is based on TextWriter: | |
## it was messing up binary files, and making mistakes with extended characters in text |
View Gemfile #1
gem 'justeat_pacman_deploy', :git => 'https://Peter-Mounce@github.je-labs.com/Peter-Mounce/gem_justeat_pacman_deploy.git' |
View setup-statsd.sh
# install git | |
sudo apt-get install g++ curl libssl-dev apache2-utils | |
sudo apt-get install git-core | |
# download the Node source, compile and install it | |
git clone https://github.com/joyent/node.git | |
cd node | |
./configure | |
make | |
sudo make install | |
# install the Node package manager for later use |
View install-graphite-ubuntu-11.10.sh
#!/bin/bash | |
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# Forked from: http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Ubuntu 11.10 Oneiric Ocelot | |
# Forked from https://gist.github.com/1287170 | |
# Modified to use NGinx + uwsgi instead of Apache, as well as memcached and supervisord, incorporating ideas from | |
# http://blog.adku.com/2011/10/scalable-realtime-stats-with-graphite.html |
NewerOlder