diff --git a/ubuntu2404.yml b/ubuntu2404.yml index 0fda183..46a2000 100644 --- a/ubuntu2404.yml +++ b/ubuntu2404.yml @@ -74,3 +74,15 @@ - name: Stop Apt-daily ansible.builtin.import_tasks: file: tasks/stop-apt-daily.yml + + - name: Enable RDP daemon + ansible.builtin.service: + name: xrdp + enabled: true + state: started + + - name: Enable ssh daemon + ansible.builtin.service: + name: ssh + enabled: true + state: started