Commit 1c196101aeb53fea3d61bdd74accefef81a606b9

Authored by Lucas Kanashiro
1 parent acc7cdea

Ensured that nginx default.conf file is absent

Showing 1 changed file with 8 additions and 0 deletions   Show diff stats
puppet/modules/colab/manifests/init.pp
... ... @@ -36,6 +36,14 @@ class colab (
36 36 proxy_hosts => $colab::hostnames,
37 37 }
38 38  
  39 + file { '/etc/nginx/conf.d/default.conf':
  40 + ensure => 'absent',
  41 + }
  42 +
  43 + file { '/etc/nginx/sites-enabled/default.conf':
  44 + ensure => 'absent',
  45 + }
  46 +
39 47 $package_defaults = {
40 48 before => Pip::Install['pyOpenSSL'],
41 49 }
... ...