Merge pull request #7 from cwarden/patch-1
[puppet-modules/puppetlabs-apt.git] / manifests / init.pp
index 03ef116193745f4f52f842b27483eb3c79b53bc5..8042c8be198a2e1c50938899c76151700d63abde 100644 (file)
@@ -28,20 +28,20 @@ class apt(
 
   package { "python-software-properties": }
 
-       file { "sources.list":
-               ensure => present,
-               owner => root,
-               group => root,
-               mode => 644,
-       }
+  file { "sources.list":
     name => "${apt::params::root}/sources.list",
+    ensure => present,
+    owner => root,
+    group => root,
+    mode => 644,
+  }
 
-       file { "sources.list.d":
-               ensure => directory,
-               owner => root,
-               group => root,
-       }
+  file { "sources.list.d":
     name => "${apt::params::root}/sources.list.d",
+    ensure => directory,
+    owner => root,
+    group => root,
+  }
 
   exec { "apt_update":
     command => "${apt::params::provider} update",