ansible.role.xrdp/tasks/main.yml

26 lines
579 B
YAML
Raw Normal View History

2019-01-27 00:24:13 +08:00
- name: Install EPEL repo
yum:
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
state: installed
- name: Install Server with GUI group package, may take a while...
yum:
name: '@^Server with GUI'
state: latest
- name: Install vncserver
yum:
name:
- tigervnc-server
- xrdp
state: latest
- name: selinux stuff for xrdp
shell: "chcon --type=bin_t /usr/sbin/xrdp; chcon --type=bin_t /usr/sbin/xrdp-sesman"
- name: Enable and start xrdp service
service:
name: xrdp
state: started
enabled: yes