fix maintenance

This commit is contained in:
VirtuBox
2019-03-25 10:05:20 +01:00
parent e823492915
commit 8ad070306b
5 changed files with 11 additions and 32 deletions

View File

@@ -11,7 +11,7 @@ _wo_complete()
# SETUP THE BASE LEVEL (everything after "wo") # SETUP THE BASE LEVEL (everything after "wo")
if [ $COMP_CWORD -eq 1 ]; then if [ $COMP_CWORD -eq 1 ]; then
COMPREPLY=( $(compgen \ COMPREPLY=( $(compgen \
-W "stack site debug clean secure import-slow-log log update sync info --version --help --quiet" \ -W "stack site debug clean secure import-slow-log log update sync info maintenance --version --help --quiet" \
-- $cur) ) -- $cur) )

View File

@@ -0,0 +1,8 @@
### Example Plugin Configuration for WordOps
[maintenance]
### If enabled, load a plugin named `example` either from the Python module
### `wo.cli.plugins.example` or from the file path
### `/var/lib/wo/plugins/example.py`
enable_plugin = true

View File

@@ -679,7 +679,7 @@ if [ "$migration" -eq "1" ]; then
wo_lib_echo_info "For autocompletion, run the following command:" wo_lib_echo_info "For autocompletion, run the following command:"
wo_lib_echo_info "source /etc/bash_completion.d/wo_auto.rc" wo_lib_echo_info "source /etc/bash_completion.d/wo_auto.rc"
echo echo
wo_lib_echo "WordOps (wo) help: https://wordops.io/docs" wo_lib_echo "WordOps (wo) help: https://docs.wordops.io"
else else
echo echo
wo_lib_echo "For WordOps (wo) auto completion, run the following command" wo_lib_echo "For WordOps (wo) auto completion, run the following command"
@@ -687,5 +687,5 @@ else
wo_lib_echo_info "source /etc/bash_completion.d/wo_auto.rc" wo_lib_echo_info "source /etc/bash_completion.d/wo_auto.rc"
echo echo
wo_lib_echo "Yay! WordOps (wo) installed/updated successfully" wo_lib_echo "Yay! WordOps (wo) installed/updated successfully"
wo_lib_echo "WordOps (wo) help: https://wordops.io/docs" wo_lib_echo "WordOps (wo) help: https://docs.wordops.io"
fi fi

View File

@@ -11,8 +11,6 @@ from wo.core.fileutils import WOFileUtils
from wo.core.shellexec import WOShellExec from wo.core.shellexec import WOShellExec
from wo.core.git import WOGit from wo.core.git import WOGit
from wo.core.download import WODownload from wo.core.download import WODownload
import configparser
import os
def wo_maintenance_hook(app): def wo_maintenance_hook(app):

View File

@@ -1,27 +0,0 @@
use strict;
# You can modify this file to re-enable SPAM checking through spamassassin
# and to re-enable antivirus checking.
#
# Default antivirus checking mode
# Please note, that anti-virus checking is DISABLED by
# default.
# If You wish to enable it, please uncomment the following lines:
@bypass_virus_checks_maps = (
\%bypass_virus_checks, \@bypass_virus_checks_acl, \$bypass_virus_checks_re);
#
# Default SPAM checking mode
# Please note, that anti-spam checking is DISABLED by
# default.
# If You wish to enable it, please uncomment the following lines:
@bypass_spam_checks_maps = (
\%bypass_spam_checks, \@bypass_spam_checks_acl, \$bypass_spam_checks_re);
1; # ensure a defined return