a stray sheep

お仕事周りの雑記帳

2016-12-14から1日間の記事一覧

冪等性を損なうサンプルplaybook

サンプル site.yml --- - hosts: all become: true tasks: - name: test lineinfile lineinfile: dest: /tmp/test.conf regexp: '^#ServerName ' line: "ServerName {{ ansible_fqdn }}:80" test.conf #ServerName localhost:80 ansible-playbookの実行 1回…