Region is:
Rajendra Prasad
Sarvepalli Radhakrishnan
Zakir Hussain
Varahagiri Venkata Giri
Fakhruddin Ali Ahmed
Neelam Sanjiva Reddy
Giani Zail Singh
Ramaswamy Venkataraman
| #!/bin/sh | |
| # Credits to: | |
| # - http://vstone.eu/reducing-vagrant-box-size/ | |
| # - https://github.com/mitchellh/vagrant/issues/343 | |
| aptitude -y purge ri | |
| aptitude -y purge installation-report landscape-common wireless-tools wpasupplicant ubuntu-serverguide | |
| aptitude -y purge python-dbus libnl1 python-smartpm python-twisted-core libiw30 | |
| aptitude -y purge python-twisted-bin libdbus-glib-1-2 python-pexpect python-pycurl python-serial python-gobject python-pam python-openssl libffi5 |
| #!/usr/bin/env python | |
| # -*- mode: python; backup-inhibited: t -*- | |
| import glob | |
| import os | |
| import re | |
| import subprocess | |
| import sys | |
| RESOURCE_DIR = ('/Users/roshan/Library/Application Support/Colloquy/' |
| #!/bin/sh | |
| # based on http://offbytwo.com/2008/05/09/show-ip-address-of-vm-as-console-pre-login-message.html | |
| # need to be root to write out these files | |
| if [ `id -u` != 0 ]; then | |
| echo "Need to run as root. Maybe use sudo..." | |
| exit | |
| fi | |
| GET_IP_ADDRESS='/usr/local/bin/get-ip-address' |
Region is:
Rajendra Prasad
Sarvepalli Radhakrishnan
Zakir Hussain
Varahagiri Venkata Giri
Fakhruddin Ali Ahmed
Neelam Sanjiva Reddy
Giani Zail Singh
Ramaswamy Venkataraman