buildah-installed

Description

n/a

Code

frecklets:
- apt-repository-added:
    repo_url: ppa:projectatomic/ppa

- package-installed:
    package: buildah
frecklecute --community buildah-installed --help

Usage: frecklecute buildah-installed [OPTIONS]

  n/a

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


#
# module path: pycklets.buildah_installed.BuildahInstalled
#


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

@dataclass
class BuildahInstalled(AutoPycklet):
    """No documentation available.

       Args:

    """

    FRECKLET_ID = "buildah-installed"



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


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


#
# module path: pycklets.buildah_installed.BuildahInstalled
#


from pyckles import AutoPycklet

class BuildahInstalled(AutoPycklet):
    """No documentation available.

       Args:

    """

    FRECKLET_ID = "buildah-installed"

    def __init__(self, ):

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



frecklet_class = BuildahInstalled