Ubuntu Pastebin

Paste from siva at Wed, 1 Feb 2017 21:18:26 +0000

Download as text
1
2
3
4
5
6
PACKAGES = [ "python", "docker.io" ]
@hooks.hook()
def install():
    apt_upgrade(fatal=True, dist=True)
    apt_install(PACKAGES, fatal=True)
    load_docker_image()
Download as text