Giter VIP home page Giter VIP logo

Comments (4)

elliotweiser avatar elliotweiser commented on July 17, 2024 1

IIRC, Ansible 2.0+ dislikes undefined variables, which seems to obviate the is defined check. My guess is the "best" (or at least easiest) fix is to uncomment the offending variable in defaults/main.yml, thus defining it. Sane default; easily overridden.

from ansible-role-homebrew.

geerlingguy avatar geerlingguy commented on July 17, 2024

There's another way of defining that when condition, though... I can't recall right now and can't look up in my recent commits to other roles, but you basically have to do two checks to see if it's defined and has a valueโ€”I think. It might be safer/more sane, otherwise I'm okay with just uncommenting that default var if it doesn't cause any other issues.

from ansible-role-homebrew.

mikesouza avatar mikesouza commented on July 17, 2024

Thanks for the quick responses and feedback.

I've determined the root cause of the failed task; the with_items: {{ homebrew_uninstalled_packages }} is evaluated before the when: homebrew_uninstalled_packages is defined clause. This is intended behavior (See ansible/ansible#13950), and one solution is to change it to with_items: {{ homebrew_uninstalled_packages|default([]) }}.

However, IMO the better solution is to uncomment the line in defaults/main.yml and remove the when clause from the task altogether, for the following reasons:

  • From the POV of someone new using this role, it's nice to be able to just look in the defaults/main.yml to see all available variables and defaults, especially when every other variable is defined and defaulted in this file. Similarly, the README remains consistent and unchanged; it currently mistakenly suggests that the homebrew_uninstalled_packages is defaulted to [] like the other documented variables.
  • The task usage of homebrew_uninstalled_packages variable would become consistent and semantically the same as the task for installing packages via homebrew_installed_packages. I don't see a good reason why this task needs to be different, but please enlighten me if there's a use case I can't see.

I've submitted PR #67 with my proposed fix.

Thank you for your time.

from ansible-role-homebrew.

geerlingguy avatar geerlingguy commented on July 17, 2024

Fixed in above PR!

from ansible-role-homebrew.

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.