mirror of
https://github.com/winapps-org/winapps.git
synced 2025-06-03 05:37:19 +02:00
Allow VM_NAME to be changed
This commit is contained in:
parent
1edae785f4
commit
b9ef076dc8
@ -29,7 +29,6 @@ readonly COMPOSE_PATH="${HOME}/.config/winapps/compose.yaml"
|
|||||||
readonly SCRIPT_DIR_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
readonly SCRIPT_DIR_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
|
||||||
|
|
||||||
# OTHER
|
# OTHER
|
||||||
readonly VM_NAME="RDPWindows" # FOR 'libvirt' ONLY
|
|
||||||
readonly CONTAINER_NAME="WinApps" # FOR 'docker' AND 'podman' ONLY
|
readonly CONTAINER_NAME="WinApps" # FOR 'docker' AND 'podman' ONLY
|
||||||
readonly RDP_PORT=3389
|
readonly RDP_PORT=3389
|
||||||
readonly DOCKER_IP="127.0.0.1"
|
readonly DOCKER_IP="127.0.0.1"
|
||||||
@ -42,6 +41,7 @@ RDP_USER=""
|
|||||||
RDP_PASS=""
|
RDP_PASS=""
|
||||||
RDP_DOMAIN=""
|
RDP_DOMAIN=""
|
||||||
RDP_IP=""
|
RDP_IP=""
|
||||||
|
VM_NAME="RDPWindows" # FOR 'libvirt' ONLY
|
||||||
WAFLAVOR="docker"
|
WAFLAVOR="docker"
|
||||||
RDP_FLAGS=""
|
RDP_FLAGS=""
|
||||||
FREERDP_COMMAND=""
|
FREERDP_COMMAND=""
|
||||||
|
24
setup.sh
24
setup.sh
@ -73,7 +73,6 @@ readonly CONFIG_PATH="${HOME}/.config/winapps/winapps.conf" # UNIX path to the W
|
|||||||
readonly INQUIRER_PATH="./install/inquirer.sh" # UNIX path to the 'inquirer' script, which is used to produce selection menus.
|
readonly INQUIRER_PATH="./install/inquirer.sh" # UNIX path to the 'inquirer' script, which is used to produce selection menus.
|
||||||
|
|
||||||
# REMOTE DESKTOP CONFIGURATION
|
# REMOTE DESKTOP CONFIGURATION
|
||||||
readonly VM_NAME="RDPWindows" # Name of the Windows VM (FOR 'libvirt' ONLY).
|
|
||||||
readonly RDP_PORT=3389 # Port used for RDP on Windows.
|
readonly RDP_PORT=3389 # Port used for RDP on Windows.
|
||||||
readonly DOCKER_IP="127.0.0.1" # Localhost.
|
readonly DOCKER_IP="127.0.0.1" # Localhost.
|
||||||
|
|
||||||
@ -85,17 +84,18 @@ OPT_UNINSTALL=0 # Set to '1' if the user specifies '--uninstall'.
|
|||||||
OPT_AOSA=0 # Set to '1' if the user specifies '--setupAllOfficiallySupportedApps'.
|
OPT_AOSA=0 # Set to '1' if the user specifies '--setupAllOfficiallySupportedApps'.
|
||||||
|
|
||||||
# WINAPPS CONFIGURATION FILE
|
# WINAPPS CONFIGURATION FILE
|
||||||
RDP_USER="" # Imported variable.
|
RDP_USER="" # Imported variable.
|
||||||
RDP_PASS="" # Imported variable.
|
RDP_PASS="" # Imported variable.
|
||||||
RDP_DOMAIN="" # Imported variable.
|
RDP_DOMAIN="" # Imported variable.
|
||||||
RDP_IP="" # Imported variable.
|
RDP_IP="" # Imported variable.
|
||||||
WAFLAVOR="docker" # Imported variable.
|
VM_NAME="RDPWindows" # Name of the Windows VM (FOR 'libvirt' ONLY).
|
||||||
RDP_SCALE=100 # Imported variable.
|
WAFLAVOR="docker" # Imported variable.
|
||||||
RDP_FLAGS="" # Imported variable.
|
RDP_SCALE=100 # Imported variable.
|
||||||
MULTIMON="false" # Imported variable.
|
RDP_FLAGS="" # Imported variable.
|
||||||
DEBUG="true" # Imported variable.
|
MULTIMON="false" # Imported variable.
|
||||||
FREERDP_COMMAND="" # Imported variable.
|
DEBUG="true" # Imported variable.
|
||||||
MULTI_FLAG="" # Set based on value of $MULTIMON.
|
FREERDP_COMMAND="" # Imported variable.
|
||||||
|
MULTI_FLAG="" # Set based on value of $MULTIMON.
|
||||||
|
|
||||||
# PERMISSIONS AND DIRECTORIES
|
# PERMISSIONS AND DIRECTORIES
|
||||||
SUDO="" # Set to "sudo" if the user specifies '--system', or "" if the user specifies '--user'.
|
SUDO="" # Set to "sudo" if the user specifies '--system', or "" if the user specifies '--user'.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user