Compare commits
1 Commits
master
...
5198f9c843
| Author | SHA1 | Date | |
|---|---|---|---|
| 5198f9c843 |
10
installJRMC
10
installJRMC
@@ -302,11 +302,11 @@ EOF
|
||||
_pkg_query(){ _ifSudo rpm -q "$@"; }
|
||||
_firewall_cmd(){ _ifSudo firewall-cmd "$@"; }
|
||||
elif [[ "$ID" =~ ^(ubuntu|debian)$ ]]; then
|
||||
_pkg_install(){ _ifSudo apt-get install -y "$@"; }
|
||||
_pkg_reinstall(){ _ifSudo apt-get reinstall -y "$@"; }
|
||||
_pkg_install_nogpg(){ _ifSudo apt-get install -y "$@"; }
|
||||
_pkg_remove(){ _ifSudo apt-get remove -y "$@"; }
|
||||
_pkg_update(){ _ifSudo apt-get update -y; }
|
||||
_pkg_install(){ _ifSudo apt-get install -y -q0 "$@"; }
|
||||
_pkg_reinstall(){ _ifSudo apt-get reinstall -y -q0 "$@"; }
|
||||
_pkg_install_nogpg(){ _ifSudo apt-get install -y -q0 "$@"; }
|
||||
_pkg_remove(){ _ifSudo apt-get remove -y -q0 "$@"; }
|
||||
_pkg_update(){ _ifSudo apt-get update -y -q0; }
|
||||
_pkg_query(){ _ifSudo dpkg -l "$@"; }
|
||||
_firewall_cmd(){ _ifSudo ufw "$@"; }
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user