-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
42 lines (30 loc) · 1.16 KB
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env bash
# @K.Dziuba
# Virtual Box Extension Pack Automatic (Re)Install Script - Config File
# ===========================
# General settings
# ===========================
# VirutalBox version (i.e. "6.1.30")
VBOX_VERSION="`getVboxVersion`"
# download source
REPOSITORY="https://download.virtualbox.org/virtualbox"
FILE_NAME="Oracle_VM_VirtualBox_Extension_Pack-$VBOX_VERSION.vbox-extpack"
FILE_NAME_v7_1_x="Oracle_VirtualBox_Extension_Pack-$VBOX_VERSION.vbox-extpack"
# save location directory (file will be removed automaticaly)
SAVE_LOCATION_DIR="/tmp"
# package name (will be used for removing the old Extension Pack version)
INSTALL_NAME="Oracle VM VirtualBox Extension Pack"
INSTALL_NAME_v7_1_x="Oracle VirtualBox Extension Pack"
# ===================================
# Auth settings
# ===================================
# enable root authentication types
# -----------------------------------
# enable for sudo authentication (recommended for Terminal)
authWithSudo='yes'
# enable for polkit/pkexec authentication (GUI only)
# authWithPkexec='yes'
# enable for zensu authentication
# authWithZensu='yes'
# enable for gksu authentication
# authWithGksu='yes'