ufw-installed

Example:

# Install ufw firewall.
- ufw-installed

Description

Install the ufw firewall.

Resources

Examples

Example 1

Install ufw firewall.

Code
- ufw-installed

Code

doc:
  short_help: Install the ufw firewall.
  references:
    ufw ubuntu community help: https://help.ubuntu.com/community/UFW"
  examples:
  - title: Install ufw firewall.

frecklets:
- package-installed:
    package: ufw
frecklecute ufw-installed --help

Usage: frecklecute ufw-installed [OPTIONS]

  Install the ufw firewall.

Options:
  --help  Show this message and exit.
# -*- coding: utf-8 -*-


#
# module path: pycklets.ufw_installed.UfwInstalled
#


from dataclasses import dataclass
from pyckles import AutoPycklet
from typing import *    # noqa

@dataclass
class UfwInstalled(AutoPycklet):
    """Install the ufw firewall.

       Args:

    """

    FRECKLET_ID = "ufw-installed"



    def __post_init__(self):
        super(UfwInstalled, self).__init__(var_names=[])


frecklet_class = UfwInstalled
# -*- coding: utf-8 -*-


#
# module path: pycklets.ufw_installed.UfwInstalled
#


from pyckles import AutoPycklet

class UfwInstalled(AutoPycklet):
    """Install the ufw firewall.

       Args:

    """

    FRECKLET_ID = "ufw-installed"

    def __init__(self, ):

        super(UfwInstalled, self).__init__(var_names=[])



frecklet_class = UfwInstalled