test
This commit is contained in:
parent
3da938aa5c
commit
3d9b93d250
@ -15,14 +15,6 @@ topgrade_conf_pull ()
|
||||
}
|
||||
alias topgrade-conf-pull='topgrade_conf_pull'
|
||||
|
||||
#alias topgrade='$TOPGRADE_PATH'
|
||||
|
||||
# System Updates Only
|
||||
alias sysup='$TOPGRADE_PATH --config $TOPGRADE_CONF_PATH/systemonly.toml'
|
||||
|
||||
# Template Repos
|
||||
alias templategitup='$TOPGRADE_PATH --config $TOPGRADE_CONF_PATH/template_git.toml'
|
||||
|
||||
topgrade ()
|
||||
{
|
||||
if [[ -f "$TOPGRADE_PATH" ]] ; then
|
||||
@ -33,11 +25,22 @@ topgrade ()
|
||||
}
|
||||
|
||||
# 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
|
||||
#}
|
||||
sysup ()
|
||||
{
|
||||
if [[ -f "$TOPGRADE_PATH" ]] ; then
|
||||
$TOPGRADE_PATH --config $TOPGRADE_CONF_PATH/systemonly.toml
|
||||
else
|
||||
echo "topgrade not found at $TOPGRADE_PATH"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
# templategitup Updates Only
|
||||
templategitup ()
|
||||
{
|
||||
if [[ -f "$TOPGRADE_PATH" ]] ; then
|
||||
$TOPGRADE_PATH --config $TOPGRADE_CONF_PATH/template_git.toml
|
||||
else
|
||||
echo "topgrade not found at $TOPGRADE_PATH"
|
||||
fi
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user