GithubHelp home page GithubHelp logo

Comments (2)

davidc-donorschoose avatar davidc-donorschoose commented on June 20, 2024

Aha! I was able to remove users idempotently using ignore_failure, which is one of the common attribute that can be set on any resource. I do still see an error such as this in stdout, but it's ignored and the chef-solo run continues:

ERROR: user_account[deleteme] (blueprint::default line 42) had an error: can't find user for deleteme

Example recipe code from my own blueprint cookbook, which depends on the user cookbook, so that I can use the user_account resource:

# Search data_bags/accounts/*.json for users to remove
remove_accounts = search(:users, "(action:remove)")

remove_accounts.each do |u|
  username = u['username'] || u['id']
  user_account username do
    action :remove
    # Idempotent in case the user is already removed.
    ignore_failure true
  end
end

from chef-user.

fnichol avatar fnichol commented on June 20, 2024

Looks like @atz had a great solution in #16 so that should close this out, woo!

from chef-user.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.