mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-01-10 10:55:10 +00:00
Fix duplication in comment, rename to install_core_packages
This commit is contained in:
parent
67ddcd6ebb
commit
d242578c35
@ -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
|
||||
|
@ -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
|
||||
|
@ -12,7 +12,7 @@ catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
install_core_dependencies
|
||||
install_core_packages
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -12,7 +12,7 @@ catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
install_core_dependencies
|
||||
install_core_packages
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
@ -12,7 +12,7 @@ catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
install_core_dependencies
|
||||
install_core_packages
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user