summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-07-15 01:33:54 +1000
committerJames Turnbull <james@lovedthanlost.net>2010-07-15 01:43:01 +1000
commit1cda7c53e340bd95513c973e356cbc90372efe38 (patch)
treea0577f4641cae04f0d16ffb687a70d4f4514d6aa /examples
parentf60b6a0e54bf99e20bfa876b8341a5cc0da74584 (diff)
downloadpuppet-1cda7c53e340bd95513c973e356cbc90372efe38.tar.gz
puppet-1cda7c53e340bd95513c973e356cbc90372efe38.tar.xz
puppet-1cda7c53e340bd95513c973e356cbc90372efe38.zip
Fixes errant Trac references in documentation
Diffstat (limited to 'examples')
-rw-r--r--examples/modules/sample-module/README.txt2
-rw-r--r--examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/modules/sample-module/README.txt b/examples/modules/sample-module/README.txt
index ee4b8201a..cd35c83a1 100644
--- a/examples/modules/sample-module/README.txt
+++ b/examples/modules/sample-module/README.txt
@@ -13,5 +13,5 @@ Note the consistent naming of files for Puppet::Util::Autoload
Reference Documents:
http://reductivelabs.com/trac/puppet/wiki/ModuleOrganisation
-http://reductivelabs.com/trac/puppet/wiki/WritingYourOwnFunctions
+http://docs.puppetlabs.com/guides/custom_functions.html
http://reductivelabs.com/trac/puppet/wiki/FunctionReference
diff --git a/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb b/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
index 34ab280fb..fe4e54992 100644
--- a/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
+++ b/examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
@@ -27,7 +27,7 @@
# Jeff McCune <jeff.mccune@northstarlabs.net>
# 2007-08-14
-# See: http://reductivelabs.com/trac/puppet/wiki/WritingYourOwnFunctions
+# See: http://docs.puppetlabs.com/guides/custom_functions.html
module Puppet::Parser::Functions
newfunction(:hostname_to_dn, :type => :rvalue, :doc => "Given 'foo.bar.com', return 'dc=foo,dc=bar,dc=com'.") do |args|