36 lines
850 B
Bash
Executable File
36 lines
850 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source /opt/idssys/defaults/colors.inc
|
|
source /opt/idssys/defaults/default.inc
|
|
|
|
cd /opt/idssys/defaults
|
|
if [ "`git log --pretty=%H ...refs/heads/master^ | head -n 1`" != "`git ls-remote origin -h refs/heads/master |cut -f1`" ]; then
|
|
git fetch origin master >/dev/null 2>&1
|
|
git reset --hard origin/master >/dev/null 2>&1
|
|
git reflog expire --expire=now --all >/dev/null 2>&1
|
|
git repack -ad >/dev/null 2>&1
|
|
git prune >/dev/null 2>&1
|
|
git pull >/dev/null 2>&1
|
|
echo -e "\e[92m\e[1mLinUPx update completed\e[0m"
|
|
echo ""
|
|
./test.sh
|
|
exit 0
|
|
fi
|
|
|
|
|
|
|
|
function myfunc()
|
|
{
|
|
local -n __resultvar="$1" || return 1
|
|
__resultvar[*]="a"
|
|
__resultvar[*]="b"
|
|
__resultvar[*]="c"
|
|
__resultvar[*]="d"
|
|
__resultvar[*]="e"
|
|
}
|
|
|
|
# call function that constructs the array with the array name
|
|
myfunc targetvalue
|
|
# display it
|
|
declare -p targetvalue
|
|
|