summaryrefslogtreecommitdiff
path: root/manifests/config.pp
blob: 43da22e4941f4d5c9ffcf81083cd247605aa174a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class python::config {

  Class['python::install'] -> Python::Pip <| |>
  Class['python::install'] -> Python::Requirements <| |>
  Class['python::install'] -> Python::Virtualenv <| |>

  Python::Virtualenv <| |> -> Python::Pip <| |>
  Python::Virtualenv <| |> -> Python::Requirements <| |>

  if $python::gunicorn {
    Class['python::install'] -> Python::Gunicorn <| |>

    Python::Gunicorn <| |> ~> Service['gunicorn']

    service { 'gunicorn':
      ensure     => running,
      enable     => true,
      hasrestart => true,
      hasstatus  => false,
      pattern    => '/usr/bin/gunicorn',
    }
  }

}