From: Oleg Broytman Date: Wed, 24 Jul 2019 15:27:14 +0000 (+0300) Subject: Style(update-root): Remove excessive quotes X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=d533ccc3cea34e5cb8dfe8ba14578e10302870b9;p=ansible.git Style(update-root): Remove excessive quotes --- diff --git a/playbooks/debian/roles/init-system/tasks/apt.yml b/playbooks/debian/roles/init-system/tasks/apt.yml index bc6c8ed..f08f58f 100644 --- a/playbooks/debian/roles/init-system/tasks/apt.yml +++ b/playbooks/debian/roles/init-system/tasks/apt.yml @@ -41,7 +41,6 @@ state: absent update_cache: no - - name: Configure apt key for deb-multimedia become: true apt_key: diff --git a/playbooks/debian/update-root.yml b/playbooks/debian/update-root.yml index 74d0a8c..b2ef0ec 100644 --- a/playbooks/debian/update-root.yml +++ b/playbooks/debian/update-root.yml @@ -6,7 +6,7 @@ - name: "Update ~root - sync directories from ~phd" command: "rsync -rlt --info=name ~phd/{{ item }} ~root" register: rsync - changed_when: "rsync.stdout != ''" + changed_when: rsync.stdout != '' loop: ['.vim', 'bin', 'lib'] - name: "Update ~root - sync files from ~phd"