Puppet Class: python_deploy

Defined in:
modules/python_deploy/manifests/init.pp

Summary

Base class for deploying Python code

Overview

SPDX-License-Identifier: Apache-2.0



3
4
5
6
7
8
9
10
11
12
# File 'modules/python_deploy/manifests/init.pp', line 3

class python_deploy {
    ensure_packages(['virtualenv', 'make'])
    file { '/usr/local/bin/python-deploy-venv':
        ensure => file,
        owner  => 'root',
        group  => 'root',
        mode   => '0555',
        source => 'puppet:///modules/python_deploy/python_deploy_venv.sh',
    }
}