diff options
| author | Nigel Kersten <nigelk@google.com> | 2009-07-13 16:18:51 -0700 |
|---|---|---|
| committer | Nigel Kersten <nigelk@google.com> | 2009-07-14 07:54:15 -0700 |
| commit | a42e8788b1fde5273ba1e34f6d90c451394849b8 (patch) | |
| tree | 5145273a5bba4a3bf070c95417e2c334db4fbe25 /lib/puppet/provider/mount | |
| parent | 22f56327e74a1201cf25d82e980b2500057d698e (diff) | |
| download | puppet-a42e8788b1fde5273ba1e34f6d90c451394849b8.tar.gz puppet-a42e8788b1fde5273ba1e34f6d90c451394849b8.tar.xz puppet-a42e8788b1fde5273ba1e34f6d90c451394849b8.zip | |
deprecate NetInfo providers and examples, remove all NetInfo references and tests.
Diffstat (limited to 'lib/puppet/provider/mount')
| -rw-r--r-- | lib/puppet/provider/mount/netinfo.rb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/lib/puppet/provider/mount/netinfo.rb b/lib/puppet/provider/mount/netinfo.rb deleted file mode 100644 index 1cc6c4476..000000000 --- a/lib/puppet/provider/mount/netinfo.rb +++ /dev/null @@ -1,37 +0,0 @@ -# Manage NetInfo POSIX objects. Probably only used on OS X, but I suppose -# it could be used elsewhere. -require 'puppet/provider/nameservice/netinfo' -require 'puppet/provider/mount' - -# Puppet::Type.type(:mount).provide :netinfo, :parent => Puppet::Provider::NameService::NetInfo do -# include Puppet::Provider::Mount -# desc "Mount management in NetInfo. This provider is highly experimental and is known -# not to work currently." -# commands :nireport => "nireport", :niutil => "niutil" -# commands :mountcmd => "mount", :umount => "umount", :df => "df" -# -# options :device, :key => "name" -# options :name, :key => "dir" -# options :dump, :key => "dump_freq" -# options :pass, :key => "passno" -# options :fstype, :key => "vfstype" -# options :options, :key => "opts" -# -# defaultfor :operatingsystem => :darwin -# -# def initialize(resource) -# warning "The NetInfo mount provider is highly experimental. Use at your own risk." -# super -# end -# -# def mount -# cmd = [] -# if opts = @resource.should(:options) -# cmd << opts -# end -# cmd << @resource.should(:device) -# cmd << @resource[:name] -# mountcmd cmd -# end -# end - |
