add some dummy install onedir functions to call the stable version for certain OSes, eg. freebsd, openbsd, smartos.

This commit is contained in:
Gareth J. Greenaway 2023-03-30 12:57:20 -07:00
parent 829094e3fc
commit 88319abee8
No known key found for this signature in database
GPG key ID: 10B62F8A7CAD7A41

View file

@ -4442,6 +4442,11 @@ install_fedora_check_services() {
return 0
}
install_fedora_onedir() {
install_fedora_stable || return 1
return 0
}
#
# Ended Fedora Install Functions
#
@ -6881,6 +6886,15 @@ install_freebsd_restart_daemons() {
service salt_$fname start
done
}
install_freebsd_onedir() {
#
# call install_freebsd_stable
#
install_freebsd_stable || return 1
return 0
}
#
# Ended FreeBSD Install Functions
#
@ -6999,6 +7013,14 @@ install_openbsd_restart_daemons() {
return 0
}
install_openbsd_onedir() {
#
# Call install_openbsd_stable
#
install_openbsd_stable || return 1
return 0
}
#
# Ended OpenBSD Install Functions
#
@ -7199,6 +7221,14 @@ install_smartos_restart_daemons() {
return 0
}
install_smartos_onedir() {
#
# call install_smartos_stable
#
install_smartos_stable || return 1
return 0
}
#
# Ended SmartOS Install Functions
#