4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
8 results tagged ansible x
  • thumbnail
    Show some equivalent list comprehensions in filter examples · Issue #1068 · pallets/jinja · GitHub
    # filter out all elements not with x > 5
    a = [el for el in data if el['x'] > 5]
    
    # get all the 'c' attributes as a list
    b = [el['c'] for el in data]
    
    # get all the 'c' attributes for the elements with x > 5
    c = [el['c'] for el in data if el['x'] > 5]
    
    In Jinja2:
    
    a: {{ data | selectattr('x', 'gt', 5) | list }}
    b: {{ data | map(attribute='c') | list }} 
    c: {{ data | selectattr('x', 'gt', 5) | map(attribute='c') | list }} 
    September 24, 2021 at 11:47:44 AM GMT+2 * - permalink - archive.org - https://github.com/pallets/jinja/issues/1068
    ansible comprehension list python
  • thumbnail
    OSX crash complaining of operation `in progress in another thread when fork() was called` · Issue #32499 · ansible/ansible · GitHub

    Ce truc obscur qui t'arrive et où la solution se trouve au fond d'une PR

    export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES

    August 4, 2021 at 4:12:06 PM GMT+2 - permalink - archive.org - https://github.com/ansible/ansible/issues/32499
    ansible mac python
  • Best Practices — Ansible Documentation

    ansible directory structure

    August 17, 2019 at 5:52:36 PM GMT+2 - permalink - archive.org - https://docs.ansible.com/ansible/latest/user_guide/playbooks_best_practices.html
    ansible
  • Frequently Asked Questions — Ansible Documentation
    June 27, 2019 at 5:28:27 PM GMT+2 - permalink - archive.org - https://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-configure-a-jump-host-to-access-servers-that-i-have-no-direct-access-to
    ansible bastion jump ssh
  • Ansible vs Chef · Nothing interesting...

    Great article via cron.weekly

    March 9, 2016 at 11:24:52 AM GMT+1 - permalink - archive.org - http://tjheeta.github.io/2015/04/15/ansible-vs-chef/
    ansible chef
  • configz/roles/xymon at master · theonlydoo/configz

    Pour installer xymon rapidement
    via doo

    November 2, 2015 at 3:28:24 PM GMT+1 - permalink - archive.org - https://github.com/theonlydoo/configz/tree/master/roles/xymon
    ansible monitoring xymon
  • thumbnail
    Ansible vs. Salt
    January 1, 2015 at 2:56:54 PM GMT+1 - permalink - archive.org - http://www.scriptrock.com/articles/ansible-vs-salt
    ansible salt
  • DevOps for People Who Hate DevOps - Rigel Group

    Intro ansible par un fan
    Via arnaudb

    April 13, 2014 at 9:28:36 PM GMT+2 - permalink - archive.org - http://www.rigelgroupllc.com/blog/2013/06/10/devops-for-people-who-hate-devops/
    ansible sys
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation