Chef属性文件

问题描述 投票:0回答:1

我有一个厨师食谱,用于创建三个用户,将它们添加到一个组并将它们写入sudoers文件。

group "usergroup" do
  gid 2000
end

print "User1 or User2 or User3?"
env=$stdin.gets.chomp
case env
when "User1"
  user "User1" do
    uid 150
    gid "usergroup"
    home "/home/User1"
    shell "/bin/bash"
  end

  directory "/home/User1" do
    owner "User1"
    group "usergroup"
    mode "0777"
    action :create
  end

  execute "echo" do
    command "echo 'User1 ALL=(ALL) ALL' >> /etc/sudoers"
    not_if "grep -F 'User1 ALL=(ALL) ALL' /etc/sudoers"
  end

when "User2"
  user "User2" do
    uid 250
    gid "usergroup"
    home "/home/User2"
    shell "/bin/bash"
  end

  directory "/home/User2" do
    owner "User2"
    group "usergroup"
    mode "0777"
    action :create
  end

  execute "echo" do
    command "echo 'User2 ALL=(ALL) ALL' >> /etc/sudoers"
    not_if "grep -F 'User2 ALL=(ALL) ALL' /etc/sudoers"
  end

when "User3"
  user "User3" do
    uid 350
    gid "usergroup"
    home "/home/User3"
    shell "/bin/bash"
  end

  directory "/home/User3" do
    owner "User3"
    group "usergroup"
    mode "0777"
    action :create
  end

  execute "echo" do
    command "echo 'User3 ALL=(ALL) ALL' >> /etc/sudoers"
    not_if "grep -F 'User3 ALL=(ALL) ALL' /etc/sudoers"
  end
end

我是Chef的新手,我需要一些帮助,为这个食谱编写一个合适的属性文件(/cookbook/User/attributes/default.rb)。我已经尝试过我所知道的一切,但没有什么能帮助我。另外我想知道case语句是否可以包含在属性文件中。

注意:我在本地模式下运行Chef。

chef chef-attributes
1个回答
0
投票

attributes/default.rb

default['myusers'] = ['user1','user2','user3']
default['mygroup'] = "usergroup" 
default['myenv'] = 2 #no quotes to keep an integer

recipe/default.rb

group node['mygroup'] do
  gid 2000
end

currentUser = node['myusers'][node['myenv'] - 1] #arrays start at 0, doing -1 for 2 pointing to second user
user currentUser do
  gid node['mygroup']
  home "/home/#{currentUser}"
end
execute "sudoers for #{currentUser}" do
  command "echo '#{currentUser} ALL=(ALL) ALL' >> /etc/sudoers"
  not_if "grep -F '#{currentUser} ALL=(ALL) ALL' /etc/sudoers"
end

您可以利用sudoers cookbook,它可以为您管理,但坚持您的要求。

© www.soinside.com 2019 - 2024. All rights reserved.