Source Update

This commit is contained in:
Christer Warén
2024-04-26 04:32:38 +03:00
parent 66bd5a965a
commit d0c8f026f9
9 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,3 @@
warencli-login() {
echo ">>> Authentication: Login";
}

View File

@ -0,0 +1,3 @@
warencli-logout() {
echo ">>> Authentication: Logout";
}

22
src/commands/help.sh Normal file
View File

@ -0,0 +1,22 @@
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
Maintenance Commands:
install Install
update Update
";
}

3
src/commands/install.sh Normal file
View File

@ -0,0 +1,3 @@
warencli-install() {
echo ">>> Install";
}

3
src/commands/settings.sh Normal file
View File

@ -0,0 +1,3 @@
warencli-settings() {
echo ">>> Settings";
}

3
src/commands/ssh.sh Normal file
View File

@ -0,0 +1,3 @@
warencli-ssh() {
echo ">>> SSH";
}

View File

@ -0,0 +1,3 @@
warencli-ssh-config(){
echo ">>> SSH: Config"
}

3
src/commands/ssh/sign.sh Normal file
View File

@ -0,0 +1,3 @@
warencli-ssh-sign(){
echo ">>> SSH: Certificates"
}