23 lines
290 B
Bash
23 lines
290 B
Bash
#!/usr/bin/env bash
|
|
|
|
function plugin_help() {
|
|
usage_general
|
|
cat<<EOF
|
|
commands:
|
|
fetch [download-url] [servername]
|
|
delete [plugin-name] [servername]
|
|
list [servername]
|
|
EOF
|
|
}
|
|
|
|
function plugin_fetch() {
|
|
|
|
}
|
|
|
|
function plugin_delete() {
|
|
|
|
}
|
|
|
|
function plugin_list {
|
|
|
|
}
|