User3
User3

Reputation: 69

No resource or method named 'common_tmp_dir' for 'Chef::Recipe ""init"'

I am getting the below error:

No resource or method named 'common_tmp_dir' for 'Chef::Recipe ""init"

my recipe has the following:

install_home        =   "/m1/common"
user            =   "syun"
group           =   "dba"
common_tmp_dir "Creating install home: #{install_home}" do
  path install_home
  user user
  group group
  action :create
end

please help.

Upvotes: 0

Views: 199

Answers (1)

garnertb
garnertb

Reputation: 9594

You should use the directory resource to create a new directory.

  directory "Creating install home: #{install_home}" do
    path install_home
    user user
    group group
    action :create
  end

Upvotes: 1

Related Questions