Browse Source

Merge Request #851 introduced a wrong order of installation

David Leib 7 years ago
parent
commit
739b7bfb8d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      manifests/package/debian.pp

+ 1 - 1
manifests/package/debian.pp

@@ -55,7 +55,7 @@ class nginx::package::debian(
 
         ensure_packages([ 'apt-transport-https', 'ca-certificates' ])
 
-        Apt::Source['nginx'] -> Package['apt-transport-https','ca-certificates']
+        Package['apt-transport-https','ca-certificates'] -> Apt::Source['nginx']
 
         package { 'passenger':
           ensure  => 'present',