From edb97ad2fdd822e05a7e7b717edd4d4792e23664 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Tue, 1 Feb 2022 15:10:32 -0500 Subject: [PATCH] test --- topgrade.aliases | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/topgrade.aliases b/topgrade.aliases index 8f77c31..baa28e4 100644 --- a/topgrade.aliases +++ b/topgrade.aliases @@ -3,32 +3,3 @@ topgrade_path="/opt/topgrade/topgrade" topgrade_conf_path="/etc/topgrade" topgrade_conf_repo="https://git.deathbybandaid.net/deathbybandaid/topgrade.git" - -topgrade () -{ - if [ -f "$topgrade_path" ] ; then - "$topgrade_path" - else - echo "topgrade not found at $topgrade_path" - fi -} - -# Use Configuration options from repo -topgrade-conf-pull () -{ - if [ -d "$topgrade_conf_path" ] ; then - git -C $topgrade_conf_path pull --quiet && echo "Pulled $topgrade_conf_path" - else - git clone --quiet "$topgrade_conf_repo" "$topgrade_conf_path" && echo "Pulled $topgrade_conf_path" - fi -} - -# System Updates Only -sysup () -{ - if [ -f "$topgrade_path" ] ; then - "$topgrade_path" --config $topgrade_conf_path/systemonly.toml - else - echo "topgrade not found at $topgrade_path" - fi -}