qemush : suppression de la fonction exec_as

This commit is contained in:
Hippolyte Chauvin 2023-11-29 14:41:10 +01:00
parent 48790fec0d
commit c09ea3ec38

View file

@ -1,17 +1,10 @@
#!/bin/bash
exec_as() {
local user="$1"
shift
if [ "$(whoami)" != "$user" ]; then
exec sudo -u "$user" "$0" "$@"
if [ "$(whoami)" != root ]; then
exec sudo -u qemu "$0" "$@"
else
cd || return
cd || exit
fi
}
exec_as qemu "$@" || exit
bin=bin
images=images