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 setting_up_container
network_check network_check
update_os update_os
install_core_dependencies install_core_packages
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apk add tzdata $STD apk add tzdata

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -135,10 +135,10 @@ update_os() {
# Install core packages that (almost) every container will depend upon. # Install core packages that (almost) every container will depend upon.
# Be sure to update install.func for apt-based systems as appropriate. # Be sure to update install.func for apt-based systems as appropriate.
install_core_dependencies() { install_core_packages() {
msg_info "Installing Core Dependencies" msg_info "Installing Core Packages"
$STD apk add curl mc nano newt openssh sudo $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 # 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. # Install core packages that (almost) every container will depend upon.
# Be sure to update alpine-install.func to match for apk-based systems when # Be sure to update alpine-install.func to match for apk-based systems when
# adding a new package. # adding a new package.
# a new package. install_core_packages() {
install_core_dependencies() { msg_info "Installing Core Packages"
msg_info "Installing Core Dependencies"
$STD apt-get install curl mc sudo $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 # This function modifies the message of the day (motd) and SSH settings