Fix duplication in comment, rename to install_core_packages

This commit is contained in:
Duncan Hill 2025-01-07 19:03:40 +00:00
parent 67ddcd6ebb
commit d242578c35
No known key found for this signature in database
10 changed files with 14 additions and 15 deletions

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
msg_info "Installing Dependencies"
$STD apk add tzdata

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
msg_info "Installing Grafana"
$STD apk add grafana

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
motd_ssh
customize

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
msg_info "Installing Dependencies"
$STD apk add openssl

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
msg_info "Installing Dependencies"
$STD apk add openssl

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
msg_info "Installing Alpine-Zigbee2MQTT"
$STD apk add zigbee2mqtt

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
motd_ssh
customize

View File

@ -12,7 +12,7 @@ catch_errors
setting_up_container
network_check
update_os
install_core_dependencies
install_core_packages
motd_ssh
customize

View File

@ -135,10 +135,10 @@ update_os() {
# Install core packages that (almost) every container will depend upon.
# Be sure to update install.func for apt-based systems as appropriate.
install_core_dependencies() {
msg_info "Installing Core Dependencies"
install_core_packages() {
msg_info "Installing Core Packages"
$STD apk add curl mc nano newt openssh sudo
msg_ok "Installed Core Dependencies"
msg_ok "Installed Core Packages"
}
# This function modifies the message of the day (motd) and SSH settings

View File

@ -200,11 +200,10 @@ EOF
# Install core packages that (almost) every container will depend upon.
# Be sure to update alpine-install.func to match for apk-based systems when
# adding a new package.
# a new package.
install_core_dependencies() {
msg_info "Installing Core Dependencies"
install_core_packages() {
msg_info "Installing Core Packages"
$STD apt-get install curl mc sudo
msg_ok "Installed Core Dependencies"
msg_ok "Installed Core Packages"
}
# This function modifies the message of the day (motd) and SSH settings