10 lines
225 B
YAML
10 lines
225 B
YAML
# This playbook goes through the process of setting up a simple FTP server on
|
|
# the target host.
|
|
---
|
|
- hosts: leftcoastlab
|
|
tasks:
|
|
- name: Install vsftpd package
|
|
apt:
|
|
update_cache: yes
|
|
name: vsftpd
|