ldap:
pkg:
- installed
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
#!/usr/bin/env bash | |
sudo add-apt-repository ppa:fkrull/deadsnakes | |
sudo apt-get update | |
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O /tmp/ez_setup.py | |
py_ver=`python -c 'import sys; print ".".join(str(x) for x in sys.version_info[:2])'` | |
for i in 2.6 2.7 3.2 3.3 | |
do | |
if [ "$i" != "$py_ver" ] |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
vagrant plugin install vagrant-vbguest