Remove dependency install and cleanup from install scripts

Eliminated explicit dependency installation and cleanup steps from all distribution-specific install scripts. This streamlines the scripts and delegates dependency management and cleanup to other processes or steps.
This commit is contained in:
CanbiZ 2025-12-04 14:53:57 +01:00
parent 235d217b36
commit 793c5fafe3
8 changed files with 0 additions and 65 deletions

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD dnf install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD dnf clean all
msg_ok "Cleaned"

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD dnf install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD dnf clean all
msg_ok "Cleaned"

View File

@ -13,14 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD apt-get install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD dnf install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD dnf clean all
msg_ok "Cleaned"

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD emerge --quiet net-misc/curl net-misc/wget app-misc/ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD emerge --quiet --depclean
msg_ok "Cleaned"

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD dnf install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD dnf clean all
msg_ok "Cleaned"

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD zypper install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD zypper clean
msg_ok "Cleaned"

View File

@ -13,13 +13,5 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies"
$STD dnf install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh motd_ssh
customize customize
msg_info "Cleaning up"
$STD dnf clean all
msg_ok "Cleaned"