- name: mkdir ~root/.vim file: path: /root/.vim state: directory - name: mkdir ~horus/.vim file: path: /home/horus/.vim state: directory - name: git clone vundle for user git: repo: https://github.com/VundleVim/Vundle.vim.git dest: /home/horus/.vim/bundle/Vundle.vim - name: git clone vundle for root git: repo: https://github.com/VundleVim/Vundle.vim.git dest: /root/.vim/bundle/Vundle.vim - name: copy .vimrc for ~horus copy: src: .vimrc dest: /home/horus/.vimrc mode: 744 - name: copy .vimrc for ~root copy: src: .vimrc dest: /root/.vimrc mode: 744