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
| echo "\nUpdating system packages..." | |
| apt-get -qq update | |
| echo "\nInstalling main dependencies..." | |
| apt-get install --quiet --assume-yes git curl build-essential python-setuptools python-dev sshpass | |
| echo "\nInstalling pip..." | |
| apt-get install python-pip | |
| echo "\nInstalling ansible" | |
| pip install ansible |
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.prototype.inheritsFrom = function( parentClassOrObject ){ | |
| if ( parentClassOrObject.constructor == Function ) | |
| { | |
| //Normal Inheritance | |
| this.prototype = new parentClassOrObject; | |
| this.prototype.constructor = this; | |
| this.prototype.parent = parentClassOrObject.prototype; | |
| } | |
| else | |
| { |
NewerOlder