Add dosbox for i386

This commit is contained in:
Mario Fetka 2024-05-16 15:39:36 +02:00
parent f07c3a31ec
commit ffadccaed3
3 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
if [ $DOSEMU = "dosemu2" ]; then
if [ "$DOSEMU" = "dosemu2" ]; then
echo "" >> ${DBP_INFO}
echo "DosEmu2 Integration with Mystic" >> ${DBP_INFO}
echo "" >> ${DBP_INFO}
@ -7,7 +7,7 @@ echo "" >> ${DBP_INFO}
echo "==============================================================================================================" >> ${DBP_INFO}
fi
if [ $DOSEMU = "dosemu" ]; then
if [ "$DOSEMU" = "dosemu" ]; then
echo "" >> ${DBP_INFO}
echo "DosEmu Integration with Mystic" >> ${DBP_INFO}
echo "" >> ${DBP_INFO}

View File

@ -1,4 +1,4 @@
if [ $DOSEMU = "dosemu2" ]; then
if [ "$DOSEMU" = "dosemu2" ]; then
msg_info "Installing DosEmu2 Dependencies for ${APP}"
pushd $MSTEMPDIR &>/dev/null
curl 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x6d9cd73b401a130336ed0a56ebe1b5ded2ad45d6' | tee /etc/apt/trusted.gpg.d/code.launchpad.net-dosemu2.asc &>/dev/null
@ -11,7 +11,7 @@ msg_ok "Installing DosEmu2 Dependencies for ${APP}"
fi
if [ $DOSEMU = "dosemu" ]; then
if [ "$DOSEMU" = "dosemu" ]; then
msg_info "Installing DosEmu Dependencies for ${APP}"
pushd $MSTEMPDIR &>/dev/null
curl 'https://deb.freexian.com/extended-lts/archive-key.gpg' | tee /etc/apt/trusted.gpg.d/freexian-archive-extended-lts.gpg &>/dev/null

View File

@ -172,7 +172,7 @@ source $MSTEMPDIR/mystic/dbp/prompt-${SCRIPT_VER}.sh
# Add Fail2ban | banip
source $MSTEMPDIR/mystic/fail2ban/prompt-${SCRIPT_VER}.sh
# Add Dosemu2
if [ ! -z "$DOSEMU" ]; then
if [ -n "$DOSEMU" ]; then
source $MSTEMPDIR/mystic/dosemu2/prompt-${SCRIPT_VER}.sh
fi
@ -195,7 +195,7 @@ source $MSTEMPDIR/mystic/dbp/install-${SCRIPT_VER}.sh
# Add Fail2ban | banip
source $MSTEMPDIR/mystic/fail2ban/install-${SCRIPT_VER}.sh
# Add Dosemu2
if [ ! -z "$DOSEMU" ]; then
if [ -n "$DOSEMU" ]; then
source $MSTEMPDIR/mystic/dosemu2/install-${SCRIPT_VER}.sh
fi
@ -218,7 +218,7 @@ source $MSTEMPDIR/mystic/dbp/config-${SCRIPT_VER}.sh
# Add Fail2ban | banip
source $MSTEMPDIR/mystic/fail2ban/config-${SCRIPT_VER}.sh
# Add Dosemu2
if [ ! -z "$DOSEMU" ]; then
if [ -n "$DOSEMU" ]; then
source $MSTEMPDIR/mystic/dosemu2/config-${SCRIPT_VER}.sh
fi
@ -250,7 +250,7 @@ source $MSTEMPDIR/mystic/dbp/info-${SCRIPT_VER}.sh
# Add Fail2ban | banip
source $MSTEMPDIR/mystic/fail2ban/info-${SCRIPT_VER}.sh
# Add Dosemu2
if [ ! -z "$DOSEMU" ]; then
if [ -n "$DOSEMU" ]; then
source $MSTEMPDIR/mystic/dosemu2/info-${SCRIPT_VER}.sh
fi