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 }} 
    2021年9月24日 GMT+2 上午11:47:44 * - 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

    2021年8月4日 GMT+2 下午4:12:06 - permalink - archive.org - https://github.com/ansible/ansible/issues/32499
    ansible mac python
  • Best Practices — Ansible Documentation

    ansible directory structure

    2019年8月17日 GMT+2 下午5:52:36 - permalink - archive.org - https://docs.ansible.com/ansible/latest/user_guide/playbooks_best_practices.html
    ansible
  • Frequently Asked Questions — Ansible Documentation
    2019年6月27日 GMT+2 下午5:28:27 - 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

    2016年3月9日 GMT+1 上午11:24:52 - 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

    2015年11月2日 GMT+1 下午3:28:24 - permalink - archive.org - https://github.com/theonlydoo/configz/tree/master/roles/xymon
    ansible monitoring xymon
  • thumbnail
    Ansible vs. Salt
    2015年1月1日 GMT+1 下午2:56:54 - 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

    2014年4月13日 GMT+2 下午9:28:36 - 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