Skip to content

Commit

Permalink
disable selinux :(
Browse files Browse the repository at this point in the history
  • Loading branch information
NissesSenap committed Mar 21, 2023
1 parent ae83f73 commit 7a293c7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ansible/roles/laptop/tasks/setup-RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,20 @@
dnf:
name: "{{ fedoraPackages }}"
state: present

# Disable SElLinux, I'm sorry
- name: Disable SELinux
selinux:
state: disabled

- name: Enable and start docker
ansible.builtin.systemd:
name: docker
enabled: true
state: started

- name: adding existing user '{{ user }}' to group sudo
user:
name: "{{ user }}"
groups: docker
append: yes
1 change: 1 addition & 0 deletions ansible/roles/laptop/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ fedoraPackages:
- python3-pip
- libxcrypt-compat #Needed for gcloud
- google-cloud-sdk-gke-gcloud-auth-plugin # Will install glouc as well
- moby-engine

flatpacks:
- com.slack.Slack
Expand Down

0 comments on commit 7a293c7

Please sign in to comment.