Displaying 2 results from an estimated 2 matches for "dyrektor".
Did you mean:
  direktor
  
2009 Jan 02
2
problem with custom funcion
Hello!
I''ve written custom function split - it''s located in modules/common/ 
plugins/puppet/parser/functions/split.rb and contains:
module Puppet::Parser::Functions
   newfunction(:split, :type => :rvalue) do |args|
     str=args[0]
     regex=args[1]
     idx=args[2]
     out=str.split(/#{regex}/)
     if out.is_a? Array
       out[idx]
     else
       ""
     end
2008 Oct 16
5
virutal resources and ssh_authorized_key
Hello!
I''ve got question - how to use ssh_autorized_key as a virtual resource?
I''ve got bunch of users and ssh_authorized_key virtual resources, but  
only users gets to the target system - ssh keys not...
I write something like:
class admins {
@user { "username":
    ...
}
@ssh_authorized_key { "username":
	ensure => present,
	key => "...",