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
|
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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user