Formatting
This commit is contained in:
24
installJRMC
24
installJRMC
@@ -110,13 +110,11 @@ print_help() {
|
|||||||
# @arg $@ User input
|
# @arg $@ User input
|
||||||
parse_input() {
|
parse_input() {
|
||||||
debug "Running: ${FUNCNAME[0]} $*"
|
debug "Running: ${FUNCNAME[0]} $*"
|
||||||
|
|
||||||
declare -g BUILD_SWITCH REPO_INSTALL_SWITCH LOCAL_INSTALL_SWITCH \
|
declare -g BUILD_SWITCH REPO_INSTALL_SWITCH LOCAL_INSTALL_SWITCH \
|
||||||
COMPAT_SWITCH CREATEREPO_SWITCH UNINSTALL_SWITCH \
|
COMPAT_SWITCH CREATEREPO_SWITCH UNINSTALL_SWITCH \
|
||||||
YES_SWITCH USER_MC_VERSION USER_MC_REPO MJR_FILE \
|
YES_SWITCH USER_MC_VERSION USER_MC_REPO MJR_FILE \
|
||||||
BETAPASS SERVICE_TYPE VNCPASS USER_DISPLAY \
|
BETAPASS SERVICE_TYPE VNCPASS USER_DISPLAY \
|
||||||
BUILD_TARGET CREATEREPO_TARGET
|
BUILD_TARGET CREATEREPO_TARGET
|
||||||
|
|
||||||
local long_opts short_opts input
|
local long_opts short_opts input
|
||||||
long_opts="install:,build::,outputdir:,mcversion:,arch:,mcrepo:,compat,"
|
long_opts="install:,build::,outputdir:,mcversion:,arch:,mcrepo:,compat,"
|
||||||
long_opts+="restorefile:,betapass:,"
|
long_opts+="restorefile:,betapass:,"
|
||||||
@@ -203,7 +201,6 @@ parse_input() {
|
|||||||
# @see parse_input
|
# @see parse_input
|
||||||
init() {
|
init() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
declare -g USER
|
declare -g USER
|
||||||
declare -g SCRIPT_PATH; SCRIPT_PATH=$(readlink -f "${BASH_SOURCE[0]}")
|
declare -g SCRIPT_PATH; SCRIPT_PATH=$(readlink -f "${BASH_SOURCE[0]}")
|
||||||
declare -g SCRIPT_DIR; SCRIPT_DIR=$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")
|
declare -g SCRIPT_DIR; SCRIPT_DIR=$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")
|
||||||
@@ -400,7 +397,6 @@ init() {
|
|||||||
# @arg $1 string MC repository name
|
# @arg $1 string MC repository name
|
||||||
get_latest_mc_version() {
|
get_latest_mc_version() {
|
||||||
debug "Running: ${FUNCNAME[0]}" "$*"
|
debug "Running: ${FUNCNAME[0]}" "$*"
|
||||||
|
|
||||||
local cnt mc_version_source
|
local cnt mc_version_source
|
||||||
|
|
||||||
if install_package --silent buildah \
|
if install_package --silent buildah \
|
||||||
@@ -648,12 +644,9 @@ install_mc_repo() {
|
|||||||
# @description Acquires the source DEB package from JRiver
|
# @description Acquires the source DEB package from JRiver
|
||||||
acquire_deb() {
|
acquire_deb() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local fname="MediaCenter-$MC_VERSION-$ARCH.deb"
|
local fname="MediaCenter-$MC_VERSION-$ARCH.deb"
|
||||||
declare -g MC_DEB="$OUTPUT_DIR/SOURCES/$fname"
|
declare -g MC_DEB="$OUTPUT_DIR/SOURCES/$fname"
|
||||||
|
|
||||||
debug "MC_DEB=$MC_DEB"
|
|
||||||
|
|
||||||
# If deb file already exists, skip download
|
# If deb file already exists, skip download
|
||||||
if [[ -f $MC_DEB ]]; then
|
if [[ -f $MC_DEB ]]; then
|
||||||
if [[ $(stat -c%s "$MC_DEB") -lt 10000000 ]]; then
|
if [[ $(stat -c%s "$MC_DEB") -lt 10000000 ]]; then
|
||||||
@@ -904,10 +897,8 @@ install_mc_deb() {
|
|||||||
# @description Installs Media Center RPM package on RHEL distros
|
# @description Installs Media Center RPM package on RHEL distros
|
||||||
install_mc_rhel() {
|
install_mc_rhel() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
# Swap in freeworld hardware acceleration separately from the RPM
|
# Swap in freeworld hardware acceleration separately from the RPM
|
||||||
install_mesa_freeworld
|
install_mesa_freeworld
|
||||||
|
|
||||||
install_package --no-install-check --no-gpg-check --allow-downgrades "$MC_RPM"
|
install_package --no-install-check --no-gpg-check --allow-downgrades "$MC_RPM"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1000,7 +991,6 @@ install_mc_arch() {
|
|||||||
# @description Copy the RPM to createrepo-webroot and run createrepo as the createrepo-user
|
# @description Copy the RPM to createrepo-webroot and run createrepo as the createrepo-user
|
||||||
run_createrepo() {
|
run_createrepo() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local -a cr_cmd
|
local -a cr_cmd
|
||||||
|
|
||||||
install_package createrepo_c
|
install_package createrepo_c
|
||||||
@@ -1044,7 +1034,6 @@ run_createrepo() {
|
|||||||
# @description Symlink certificates if they do not exist in default location
|
# @description Symlink certificates if they do not exist in default location
|
||||||
link_ssl_certs() {
|
link_ssl_certs() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local target_cert f
|
local target_cert f
|
||||||
local mc_cert_link="$MC_ROOT/ca-certificates.crt"
|
local mc_cert_link="$MC_ROOT/ca-certificates.crt"
|
||||||
local -a source_certs=(
|
local -a source_certs=(
|
||||||
@@ -1068,7 +1057,6 @@ link_ssl_certs() {
|
|||||||
# @description Restore the mjr license file from MJR_FILE or other common locations
|
# @description Restore the mjr license file from MJR_FILE or other common locations
|
||||||
restore_license() {
|
restore_license() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local f newest
|
local f newest
|
||||||
local -a mjrfiles
|
local -a mjrfiles
|
||||||
|
|
||||||
@@ -1109,7 +1097,6 @@ restore_license() {
|
|||||||
# @arg $2 array List of ports in firewall-cmd format
|
# @arg $2 array List of ports in firewall-cmd format
|
||||||
open_firewall() {
|
open_firewall() {
|
||||||
debug "Running: ${FUNCNAME[0]}" "$*"
|
debug "Running: ${FUNCNAME[0]}" "$*"
|
||||||
|
|
||||||
local port
|
local port
|
||||||
local service="$1"
|
local service="$1"
|
||||||
shift
|
shift
|
||||||
@@ -1148,7 +1135,6 @@ open_firewall() {
|
|||||||
# @arg $1 string Service type (xvnc, x11vnc)
|
# @arg $1 string Service type (xvnc, x11vnc)
|
||||||
set_vnc_pass() {
|
set_vnc_pass() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local vncpassfile="$HOME/.vnc/jrmc_passwd"
|
local vncpassfile="$HOME/.vnc/jrmc_passwd"
|
||||||
|
|
||||||
[[ -d ${vncpassfile%/*} ]] || execute mkdir -p "${vncpassfile%/*}"
|
[[ -d ${vncpassfile%/*} ]] || execute mkdir -p "${vncpassfile%/*}"
|
||||||
@@ -1178,7 +1164,6 @@ set_vnc_pass() {
|
|||||||
# @description Set display and port variables
|
# @description Set display and port variables
|
||||||
set_display_vars() {
|
set_display_vars() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
declare -g THIS_DISPLAY THIS_DISPLAY_NUM NEXT_DISPLAY
|
declare -g THIS_DISPLAY THIS_DISPLAY_NUM NEXT_DISPLAY
|
||||||
|
|
||||||
# Check USER_DISPLAY, else environment DISPLAY, else set to :0
|
# Check USER_DISPLAY, else environment DISPLAY, else set to :0
|
||||||
@@ -1198,7 +1183,6 @@ set_display_vars() {
|
|||||||
# @arg $1 string Service name
|
# @arg $1 string Service name
|
||||||
set_service_vars() {
|
set_service_vars() {
|
||||||
debug "Running: ${FUNCNAME[0]}" "$*"
|
debug "Running: ${FUNCNAME[0]}" "$*"
|
||||||
|
|
||||||
declare -g SERVICE_NAME SERVICE_FNAME TIMER_NAME TIMER_FNAME
|
declare -g SERVICE_NAME SERVICE_FNAME TIMER_NAME TIMER_FNAME
|
||||||
declare -g USER_STRING GRAPHICAL_TARGET
|
declare -g USER_STRING GRAPHICAL_TARGET
|
||||||
declare -ga RELOAD ENABLE DISABLE IS_ENABLED IS_ACTIVE
|
declare -ga RELOAD ENABLE DISABLE IS_ENABLED IS_ACTIVE
|
||||||
@@ -1291,14 +1275,13 @@ service_jriver-mediaserver() {
|
|||||||
# TODO https://github.com/TigerVNC/tigervnc/blob/master/unix/vncserver/HOWTO.md
|
# TODO https://github.com/TigerVNC/tigervnc/blob/master/unix/vncserver/HOWTO.md
|
||||||
service_jriver-xvnc() {
|
service_jriver-xvnc() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
local -a start_cmd
|
||||||
|
|
||||||
set_service_vars "${FUNCNAME[0]##*_}" "system"
|
set_service_vars "${FUNCNAME[0]##*_}" "system"
|
||||||
set_display_vars
|
set_display_vars
|
||||||
local -a start_cmd
|
|
||||||
declare -g PORT=$(( NEXT_DISPLAY_NUM + 5900 ))
|
declare -g PORT=$(( NEXT_DISPLAY_NUM + 5900 ))
|
||||||
|
|
||||||
install_package tigervnc-server
|
install_package tigervnc-server
|
||||||
|
|
||||||
set_vnc_pass xvnc
|
set_vnc_pass xvnc
|
||||||
|
|
||||||
start_cmd=(
|
start_cmd=(
|
||||||
@@ -1357,15 +1340,14 @@ service_jriver-xvnc() {
|
|||||||
# @description Starts and enables (at startup) x11vnc screen sharing for the local desktop
|
# @description Starts and enables (at startup) x11vnc screen sharing for the local desktop
|
||||||
service_jriver-x11vnc() {
|
service_jriver-x11vnc() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
local -a start_cmd
|
||||||
|
|
||||||
set_service_vars "${FUNCNAME[0]##*_}" "user"
|
set_service_vars "${FUNCNAME[0]##*_}" "user"
|
||||||
set_display_vars
|
set_display_vars
|
||||||
|
|
||||||
local -a start_cmd
|
|
||||||
declare -g PORT=$(( THIS_DISPLAY_NUM + 5900 ))
|
declare -g PORT=$(( THIS_DISPLAY_NUM + 5900 ))
|
||||||
|
|
||||||
install_package x11vnc
|
install_package x11vnc
|
||||||
|
|
||||||
set_vnc_pass x11vnc
|
set_vnc_pass x11vnc
|
||||||
|
|
||||||
# If .Xauthority file is missing, generate a dummy for x11vnc -auth guess
|
# If .Xauthority file is missing, generate a dummy for x11vnc -auth guess
|
||||||
@@ -1461,7 +1443,6 @@ service_jriver-createrepo() {
|
|||||||
# @description Detects if MC is installed on btrfs and disables CoW
|
# @description Detects if MC is installed on btrfs and disables CoW
|
||||||
disable_btrfs_cow() {
|
disable_btrfs_cow() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local dir
|
local dir
|
||||||
local mc_user_path="$HOME/.jriver"
|
local mc_user_path="$HOME/.jriver"
|
||||||
|
|
||||||
@@ -1478,7 +1459,6 @@ disable_btrfs_cow() {
|
|||||||
# @description Completely uninstalls MC, services, and firewall rules
|
# @description Completely uninstalls MC, services, and firewall rules
|
||||||
uninstall() {
|
uninstall() {
|
||||||
debug "Running: ${FUNCNAME[0]}"
|
debug "Running: ${FUNCNAME[0]}"
|
||||||
|
|
||||||
local service unit f i
|
local service unit f i
|
||||||
|
|
||||||
echo "Stopping and removing all Media Center services"
|
echo "Stopping and removing all Media Center services"
|
||||||
|
|||||||
Reference in New Issue
Block a user