podman-installed
Description
n/a
Code
frecklets: - apt-repository-added: repo_url: ppa:projectatomic/ppa - package-installed: package: podman
frecklecute --community podman-installed --help Usage: frecklecute podman-installed [OPTIONS] n/a Options: --help Show this message and exit.
# -*- coding: utf-8 -*- # # module path: pycklets.podman_installed.PodmanInstalled # from dataclasses import dataclass from pyckles import AutoPycklet from typing import * # noqa @dataclass class PodmanInstalled(AutoPycklet): """No documentation available. Args: """ FRECKLET_ID = "podman-installed" def __post_init__(self): super(PodmanInstalled, self).__init__(var_names=[]) frecklet_class = PodmanInstalled
# -*- coding: utf-8 -*- # # module path: pycklets.podman_installed.PodmanInstalled # from pyckles import AutoPycklet class PodmanInstalled(AutoPycklet): """No documentation available. Args: """ FRECKLET_ID = "podman-installed" def __init__(self, ): super(PodmanInstalled, self).__init__(var_names=[]) frecklet_class = PodmanInstalled