Class: Puppet::Provider::NameService::PW

Inherits:
ObjectAdd show all
Defined in:
lib/vendor/puppet/provider/nameservice/pw.rb

Constant Summary

Constants included from Util

Util::AbsolutePathPosix, Util::AbsolutePathWindows

Constants included from Util::Docs

Util::Docs::HEADER_LEVELS

Instance Attribute Summary

Attributes inherited from Puppet::Provider

#model, #resource

Attributes included from Util::Docs

#doc, #nodoc

Instance Method Summary collapse

Methods inherited from ObjectAdd

#flag, #posixmethod

Methods inherited from Puppet::Provider::NameService

#autogen, autogen_default, autogen_defaults, #autogen_id, #create, #delete, #ensure, #exists?, #get, #getinfo, #groups, #info2hash, #initialize, initvars, instances, listbyname, option, options, resource_type=, section, #set, validate, verify

Methods inherited from Puppet::Provider

#<=>, #clear, command, #command, commands, declared_feature?, default?, defaultfor, #get, #initialize, initvars, instances, make_command_methods, mk_resource_methods, mkmodelmethods, #name, optional_commands, #set, specificity, supports_parameter?, #to_s

Methods included from Util::Logging

#clear_deprecation_warnings, #deprecation_warning, #send_log

Methods included from Util

absolute_path?, activerecord_version, benchmark, binread, chuser, classproxy, #execfail, #execpipe, execute, execute_posix, execute_windows, logmethods, memory, path_to_uri, proxy, replace_file, safe_posix_fork, symbolize, symbolizehash, symbolizehash!, synchronize_on, thinmark, #threadlock, uri_to_path, wait_for_output, which, withumask

Methods included from Util::POSIX

#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid

Methods included from Util::Docs

#desc, #dochook, #doctable, #markdown_definitionlist, #markdown_header, #nodoc?, #pad, scrub

Methods included from Util::Warnings

clear_warnings, notice_once, warnonce

Methods included from Confiner

#confine, #confine_collection, #suitable?

Methods included from Util::Errors

#adderrorcontext, #devfail, #error_context, #exceptwrap, #fail

Constructor Details

This class inherits a constructor from Puppet::Provider::NameService

Instance Method Details

#deletecmdObject



5
6
7
# File 'lib/vendor/puppet/provider/nameservice/pw.rb', line 5

def deletecmd
  [command(:pw), "#{@resource.class.name.to_s}del", @resource[:name]]
end

#modifycmd(param, value) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/vendor/puppet/provider/nameservice/pw.rb', line 9

def modifycmd(param, value)
  cmd = [
    command(:pw),
    "#{@resource.class.name.to_s}mod",
    @resource[:name],
    flag(param),
    value
  ]
  cmd
end