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
function reportError(error, message) { | |
message = message || ''; | |
console.error( | |
'ERROR: ' + message + ' [' + error.toString() + ']\n' + | |
'\nName:\t\t' + (error.name || '-') + | |
'\nMessage:\t' + (error.message || '-') + | |
'\nFile:\t\t\t' + (error.fileName || '-') + | |
'\nSource:\t\t' + ((error.toSource && error.toSource()) || '-') + | |
'\nLine #:\t\t' + (error.lineNumber || '-') + | |
'\nColumn #:\t' + (error.columnNumber || '-') + |
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
# https://tutsplus.com/course/virtual-machines-with-vagrant-and-puppet/ | |
# Download and install VirtualBox https://www.virtualbox.org/wiki/Downloads | |
# Download and install Vagrant http://www.vagrantup.com/downloads.html | |
# For this lesson, we'll be using VirtualBox as the provider | |
# add a new box to collection of vagrant boxes | |
# vagrant box add <name> <location> | |
vagrant box add precise32 http://files.vagrantup.com/precise32.box |
NewerOlder