12 lines
257 B
Bash
12 lines
257 B
Bash
#!/usr/bin/env bash
|
|
# Update the system
|
|
# Copyright 2021 Bryan C. Roessler
|
|
|
|
[[ -f functions ]] && . functions || exit 1
|
|
|
|
echo "Security updates are automatically installed, use this program to perform a full system update"
|
|
|
|
is_root
|
|
|
|
dnf update --refresh -y
|