Source Update

This commit is contained in:
Christer Warén 2024-04-26 06:25:59 +03:00
parent 8808aa7b93
commit 219aac45e5
2 changed files with 45 additions and 0 deletions

View File

@ -42,6 +42,8 @@ stop () {
exit 1 exit 1
} }
{{ COMMANDS }}
COMMAND=$1 COMMAND=$1
start start

43
wx
View File

@ -42,6 +42,49 @@ stop () {
exit 1 exit 1
} }
warencli-help() {
echo "
Usage: $0 COMMAND [OPTIONS]
Common Commands:
ssh SSH
config Config
sign Certificates
Authentication Commands:
login Login
logout Logout
Management Commands:
settings Settings
";
}
warencli-settings() {
echo ">>> Settings";
}
warencli-ssh() {
echo ">>> SSH";
}
warencli-login() {
echo ">>> Authentication: Login";
}
warencli-logout() {
echo ">>> Authentication: Logout";
}
warencli-ssh-config(){
echo ">>> SSH: Config"
}
warencli-ssh-sign(){
echo ">>> SSH: Certificates"
}
COMMAND=$1 COMMAND=$1
start start