Added missing functions for Red Hat 8.x

This commit is contained in:
mbochenk 2020-08-06 13:16:16 +03:00
parent c88f22a2af
commit b466af42f0
No known key found for this signature in database
GPG key ID: 57A070F84288904B

View file

@ -4541,6 +4541,16 @@ install_red_hat_linux_git_deps() {
return 0
}
install_red_hat_enterprise_stable_deps() {
install_red_hat_linux_stable_deps || return 1
return 0
}
install_red_hat_enterprise_git_deps() {
install_red_hat_linux_git_deps || return 1
return 0
}
install_red_hat_enterprise_linux_stable_deps() {
install_red_hat_linux_stable_deps || return 1
return 0
@ -4581,6 +4591,16 @@ install_red_hat_linux_git() {
return 0
}
install_red_hat_enterprise_stable() {
install_red_hat_linux_stable || return 1
return 0
}
install_red_hat_enterprise_git() {
install_red_hat_linux_git || return 1
return 0
}
install_red_hat_enterprise_linux_stable() {
install_red_hat_linux_stable || return 1
return 0
@ -4626,6 +4646,21 @@ install_red_hat_linux_git_post() {
return 0
}
install_red_hat_enterprise_stable_post() {
install_red_hat_linux_stable_post || return 1
return 0
}
install_red_hat_enterprise_restart_daemons() {
install_red_hat_linux_restart_daemons || return 1
return 0
}
install_red_hat_enterprise_git_post() {
install_red_hat_linux_git_post || return 1
return 0
}
install_red_hat_enterprise_linux_stable_post() {
install_red_hat_linux_stable_post || return 1
return 0
@ -4686,6 +4721,21 @@ install_red_hat_linux_testing_post() {
return 0
}
install_red_hat_enterprise_testing_deps() {
install_centos_testing_deps || return 1
return 0
}
install_red_hat_enterprise_testing() {
install_centos_testing || return 1
return 0
}
install_red_hat_enterprise_testing_post() {
install_centos_testing_post || return 1
return 0
}
install_red_hat_enterprise_server_testing_deps() {
install_centos_testing_deps || return 1
return 0