--- - name: install vsftpd yum: name: vsftpd state: installed - name: config vsftpd copy: src: "vsftpd/{{ item }}" dest: "/etc/vsftpd/{{ item}}" with_items: - vsftpd.conf notify: restart_vsftpd - name: start and enable the vsftp service systemd_service: state: started name: vsftpd enabled: true