From 8e96494fed37d05993c2b1961cb745a215a08e37 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Mon, 25 Mar 2024 14:40:52 +0100 Subject: [PATCH] qemush : passage au pur POSIX ! --- bin/qemush | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/qemush b/bin/qemush index 41c00cd..efc96ad 100755 --- a/bin/qemush +++ b/bin/qemush @@ -1,5 +1,5 @@ -#!/usr/bin/env bash -# version=0.8.0 +#!/usr/bin/env sh +# version=0.9.0 # Re-exec the script as qemu via sudo (only if needed) [ "$(whoami)" != qemu ] && exec sudo -E -H -u qemu -- "$0" "$@" @@ -10,7 +10,6 @@ PATH="${HOME}/launchers:${HOME}/bin:${PATH}" # Aliases alias ls='ls --color=auto' alias exec='exec ' -shopt -s expand_aliases # Set a restrictive umask to make sure qemu user files are private umask 7027