docs(shell): add function docstring comments

This commit is contained in:
2026-02-07 15:07:22 +02:00
parent 4266567327
commit 3ff83754b1
31 changed files with 135 additions and 3 deletions

View File

@@ -39,6 +39,7 @@ packages=(
gnupg2 # GPG encryption/signing
)
# Install the Development Tools dnf group
install_dev_tools_group()
{
if dnf group list installed 2>/dev/null | grep -q "Development Tools"; then
@@ -50,6 +51,7 @@ install_dev_tools_group()
return 0
}
# Install dnf packages that are not already present
install_packages()
{
local to_install=()
@@ -75,6 +77,7 @@ install_packages()
return 0
}
# Install all dnf packages and report completion
main()
{
install_dev_tools_group