0.6r7 - Stable

This commit is contained in:
Gustavo Adolfo Mesa Roldán
2020-10-03 14:30:06 +02:00
parent d9278518de
commit 667e00baea
7 changed files with 23 additions and 2 deletions
+5
View File
@@ -20,7 +20,12 @@ function get_dep(){
echo -e "APT system detected"
echo "---------------------"
wheel true &
WPID=$!
apt-get update 1> /dev/null
disown $WPID
kill $WPID &> /dev/null
if [ $# -eq 1 ]; then
if $PRIVSOFT; then
+4
View File
@@ -19,7 +19,11 @@ function get_dep(){
echo -e "Pacman system detected"
echo "---------------------"
wheel true &
WPID=$!
pacman -F -y 1> /dev/null
disown $WPID
kill $WPID &> /dev/null
if [ $# -eq 1 ]; then
if $PRIVSOFT; then
+4
View File
@@ -32,7 +32,11 @@ function install_centos(){
echo -e "YUM system detected"
echo "---------------------"
wheel true &
WPID=$!
yum -y -q update &> /dev/null
disown $WPID
kill $WPID &> /dev/null
if [ $# -eq 1 ]; then
install_centos
+4
View File
@@ -20,7 +20,11 @@ function get_dep(){
echo -e "Zypper system detected"
echo "---------------------"
wheel true &
WPID=$!
zypper -q up -y 1> /dev/null
disown $WPID
kill $WPID &> /dev/null
if [ $# -eq 1 ]; then
if $PRIVSOFT; then