Skip to content

Instantly share code, notes, and snippets.

View irvin373's full-sized avatar
📱
mobile developer 🤖

irvin irvin373

📱
mobile developer 🤖
  • Cochabamba, Bolivia
View GitHub Profile
@alghanmi
alghanmi / vps_prep.sh
Last active April 8, 2018 01:55
Prepare a Debian VPS for Ansible Run
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
# Set User information
export _USER="rami"
export _NAME="Rami AlGhanmi"