Source code for aztk.spark.models.plugins.install.apt_get.configuration

import os
from aztk.spark.models.plugins.install import InstallPlugin

dir_path = os.path.dirname(os.path.realpath(__file__))


[docs]def AptGetPlugin(packages=None): return InstallPlugin(name="apt-get", command="apt-get update && apt-get install -y", packages=packages)