]> gitweb.fluxo.info Git - puppet-avahi.git/commitdiff
Ready for publishing
authorMichael Stahnke <stahnma@puppetlabs.com>
Fri, 19 Oct 2012 02:05:44 +0000 (19:05 -0700)
committerMichael Stahnke <stahnma@puppetlabs.com>
Fri, 19 Oct 2012 02:05:44 +0000 (19:05 -0700)
Modulefile
README
manifests/init.pp

index 6056563e696e92f65d60ca0dbf3e54fbeaa43f20..3faa09e1ffd1a559a57d4b666ed067904509cf0a 100644 (file)
@@ -1,11 +1,11 @@
 name    'stahnma-avahi'
 version '0.0.1'
-source 'UNKNOWN'
+source 'https://github.com/stahnma/puppet-module-avahi'
 author 'stahnma'
 license 'Apache License, Version 2.0'
-summary 'UNKNOWN'
-description 'UNKNOWN'
-project_page 'UNKNOWN'
+summary 'Zeroconf avahi setup for Linux'
+description 'Setup avahi in simple ways'
+project_page 'https://github.com/stahnma/puppet-module-avahi'
 
 ## Add dependencies, if any:
-dependency 'cprice404-inifile', '>= 1.2.0'
+dependency 'cprice404-inifile', '>= 0.0.3'
diff --git a/README b/README
index 64ce0b529f1b355e57fe125972d2a02f5f2f1774..563dcb3308b49dda5ce570e1d4b86119d350f7e3 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,13 @@
-avahi
+# avahi
+With this avahi module you'll be able to hit other nodes on your local network using zeroconf. This includes connecting to Macs and other Linux systems.
 
-This is the avahi module.
+You'll often be able to see other systems as something.local.
+
+    avahi-browse -a
+
+is the normal way to see what's available via zeroconf.
+
+See also: [Zeroconf](http://en.wikipedia.org/wiki/Zero_configuration_networking)
 
 License
 -------
@@ -14,4 +21,4 @@ stahnma@fedoraproject.org
 
 Support
 -------
-none
+[File issues](https://github.com/stahnma/puppet-module-avahi/issues)
index 39b88ebab5041bc59b364cb1dd151b5d3ec3a70e..187705e6bff711fd6db0171a256203b5ed549092 100644 (file)
@@ -1,13 +1,12 @@
 # == Class: avahi
 #
-#  This module sets up avahi on EL based systems.
+#  This module sets up avahi on EL/Debian based systems.
 #
+#  Tested on EL6 and Wheezy
 #
 #  Requirements:
 #    cprice404-inifile >= 0.0.3
 #
-# === Parameters
-#
 # === Examples
 #
 #  class { avahi:  }
@@ -26,10 +25,12 @@ class avahi inherits avahi::params {
    package { $avahi_main:
      ensure  => installed,
    }
+
    package { $avahi_tools:
      ensure  => installed,
      require => Package[$avahi_main]
    }
+
    package { $avahi_mdns:
      ensure  => installed,
      require => Package[$avahi_main]