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:
parent
2a49f4a4df
commit
8ae037cd30
13 changed files with 56 additions and 128 deletions
|
|
@ -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`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue