Merge pull request #260 from daenney/zomg-ze-chars
authorAshley Penney <ashley.penney@puppetlabs.com>
Wed, 5 Mar 2014 18:16:24 +0000 (13:16 -0500)
committerAshley Penney <ashley.penney@puppetlabs.com>
Wed, 5 Mar 2014 18:16:24 +0000 (13:16 -0500)
pin: Replace invalid chars with _ in file names.

manifests/pin.pp
spec/defines/pin_spec.rb

index 9cb4a8e798ba5ef3a0e1caa05275e5ba53137201..0d4d7425299b62c098e65bcce3c1229d09d6b02c 100644 (file)
@@ -68,7 +68,17 @@ define apt::pin(
     ''      => "${preferences_d}/${name}.pref",
     default => "${preferences_d}/${order}-${name}.pref",
   }
-  file { "${name}.pref":
+
+  # According to man 5 apt_preferences:
+  # The files have either no or "pref" as filename extension
+  # and only contain alphanumeric, hyphen (-), underscore (_) and period
+  # (.) characters. Otherwise APT will print a notice that it has ignored a
+  # file, unless that file matches a pattern in the
+  # Dir::Ignore-Files-Silently configuration list - in which case it will
+  # be silently ignored.
+  $file_name = regsubst($title, '[^0-9a-z\-_\.]', '_', 'IG')
+
+  file { "${file_name}.pref":
     ensure  => $ensure,
     path    => $path,
     owner   => root,
index f1ca43733b592be67de179393c80249ae2b43f9b..6438e8cbee46a7ce1c244fa8f3346b42287e2dfa 100644 (file)
@@ -105,4 +105,16 @@ describe 'apt::pin', :type => :define do
       }
     end
   end
+
+  describe 'resource title with invalid chars' do
+    context 'spaces' do
+      let(:title) { 'oh my god this is not valid' }
+      it { should contain_file('oh_my_god_this_is_not_valid.pref') }
+    end
+
+    context '#$&*$' do
+      let(:title) { 'so && many $* invalid @! things' }
+      it { should contain_file('so____many____invalid____things.pref') }
+    end
+  end
 end