shiwaforce/poco

View on GitHub
poco/commands/restart.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from .start import Start


class Restart(Start):

    command = "restart"
    description = "Run: 'poco restart nginx default' to restart nginx/project (docker, helm or kubernetes) " \
                  "with the default plan."

    run_command = "restart"

    need_checkout = True