Sha256: b91ae1acef2f443ca571779b778aeb6f734680c898de4b3942f091dc96f557dc
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
# # Cookbook Name:: user # Resource:: account # # Author:: Fletcher Nichol <fnichol@nichol.ca> # # Copyright 2011, Fletcher Nichol # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # actions :create, :remove, :modify, :manage, :lock, :unlock attribute :username, :kind_of => String, :name_attribute => true attribute :comment, :kind_of => String attribute :uid, :kind_of => [String,Integer] attribute :gid, :kind_of => [String,Integer] attribute :home, :kind_of => String attribute :shell, :kind_of => String attribute :password, :kind_of => String attribute :system_user, :default => false attribute :manage_home, :default => nil attribute :create_group, :default => nil attribute :ssh_keys, :kind_of => [Array,String], :default => [] attribute :ssh_keygen, :default => nil def initialize(*args) super @action = :create end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blinkenstein-0.1.1 | chef/cookbooks/user/resources/account.rb |