__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
"""Null plugin."""
import logging
from typing import Callable
from typing import List
from typing import Optional
from typing import Union
from certbot import interfaces
from certbot.plugins import common
logger = logging.getLogger(__name__)
class Installer(common.Plugin, interfaces.Installer):
"""Null installer."""
description = "Null Installer"
hidden = True
@classmethod
def add_parser_arguments(cls, add: Callable[..., None]) -> None:
pass
# pylint: disable=missing-function-docstring
def prepare(self) -> None:
pass # pragma: no cover
def more_info(self) -> str:
return "Installer that doesn't do anything (for testing)."
def get_all_names(self) -> List[str]:
return []
def deploy_cert(self, domain: str, cert_path: str, key_path: str,
chain_path: str, fullchain_path: str) -> None:
pass # pragma: no cover
def enhance(self, domain: str, enhancement: str,
options: Optional[Union[List[str], str]] = None) -> None:
pass # pragma: no cover
def supported_enhancements(self) -> List[str]:
return []
def save(self, title: Optional[str] = None, temporary: bool = False) -> None:
pass # pragma: no cover
def rollback_checkpoints(self, rollback: int = 1) -> None:
pass # pragma: no cover
def recovery_routine(self) -> None:
pass # pragma: no cover
def config_test(self) -> None:
pass # pragma: no cover
def restart(self) -> None:
pass # pragma: no cover
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 23 B | 0644 |
|
| disco.py | File | 11.01 KB | 0644 |
|
| manual.py | File | 11.69 KB | 0644 |
|
| null.py | File | 1.54 KB | 0644 |
|
| selection.py | File | 15.4 KB | 0644 |
|
| standalone.py | File | 9.12 KB | 0644 |
|
| webroot.py | File | 15.61 KB | 0644 |
|