[chef]


Chronological Thread 
  • From: < >
  • To:
  • Subject: [chef]
  • Date: Thu, 20 Mar 2014 10:31:30 -0700 (PDT)

Hi,

I have an execute resource that creates an /etc/crypttab file from infomation
on the server.  I'm seeing an odd behavior.  On initial run of chef-client, 
the
file isn't correct, it's missing the uuid of the device.  However, if I delete
the /etc/crypttab file and re-run chef-client, the /etc/crypttab is correctly
populated.  

Here's what it looks like:

        execute "add-to-crypttab-#{device[0]}-uuid" do
                uuid = Mixlib::ShellOut.new("cryptsetup luksUUID 
#{device[0]}")
                uuid.run_command
                UUID = uuid.stdout.chomp
                command "echo \"#{phys}-luks UUID=#{UUID} /root/#{phys}-luks
luks\" >> /etc/crypttab"
                not_if "grep #{phys}-luks /etc/crypttab"
        end

I'm trying to figure out why it's not correct on the initial run.  Any ideas? 
Is it possible to delay this so that it works as expected during the initial
run of the recipe.

Thanks,
Bob



Archive powered by MHonArc 2.6.16.

§