Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

roles: main: add enabling ssh service #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions roles/packages_base/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,19 @@
name: libva-intel-driver
state: present
when: (gpu_gen.stdout | int) <= 7

- name: Install and configure SSH
hosts: localhost
become: yes

tasks:
- name: Install OpenSSH server and client
dnf:
name: openssh
state: present

- name: Start and enable SSH service
systemd:
name: sshd
state: started
enabled: yes