Qemu script deletion & container script update

- container script checks for sudo & adds optionally adds entry to
users' ssh config
- initialize script checks for sudo priveliges like the container script
- Removal of qemu scripts
This commit is contained in:
Sonny 2017-07-12 13:25:26 +02:00
parent 2a49f4a4df
commit 8ae037cd30
13 changed files with 56 additions and 128 deletions

View file

@ -1,5 +1,12 @@
#!/bin/bash
# Setup script for vim & tmux
if [ $EUID != 0 ]; then
echo "This script needs sudo priveleges in order to install Curl"
echo "Exiting..."
exit 1
fi
function get_path {
SCRIPT=`realpath $0`
SCRIPTPATH=`dirname $SCRIPT`