diff --git a/.ansible.lint b/.ansible.lint
deleted file mode 100644
index 89d64b31a4ff3088c8a1ffe7ae9ca6f73e071328..0000000000000000000000000000000000000000
--- a/.ansible.lint
+++ /dev/null
@@ -1,3 +0,0 @@
----
-warn_list:
-  - experimental
diff --git a/.yamllint b/.yamllint
deleted file mode 100644
index 88276760562cb58bb9bc47fa890e8a3df1125b9b..0000000000000000000000000000000000000000
--- a/.yamllint
+++ /dev/null
@@ -1,33 +0,0 @@
----
-# Based on ansible-lint config
-extends: default
-
-rules:
-  braces:
-    max-spaces-inside: 1
-    level: error
-  brackets:
-    max-spaces-inside: 1
-    level: error
-  colons:
-    max-spaces-after: -1
-    level: error
-  commas:
-    max-spaces-after: -1
-    level: error
-  comments: disable
-  comments-indentation: disable
-  document-start: disable
-  empty-lines:
-    max: 3
-    level: error
-  hyphens:
-    level: error
-  indentation: disable
-  key-duplicates: enable
-  line-length: disable
-  new-line-at-end-of-file: disable
-  new-lines:
-    type: unix
-  trailing-spaces: disable
-  truthy: disable
diff --git a/RELEASES.md b/RELEASES.md
index 9202fd2d4a872688ae1728af49d28ca39561cc51..3701c1201701d4d94fcbaea8b6edb160fa6fb90d 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,5 +1,9 @@
 # Releases
 
+## 1.0.x
+
+- RHEL 7 support removed.
+
 ## 0.1.x
 
 - Initial role implementation.
diff --git a/meta/main.yml b/meta/main.yml
index aab73116eb4cbb775ad9d6b5a8c9efd8a270243d..a034c8952efa2e7ee51a931ed45f04d75f4316c7 100644
--- a/meta/main.yml
+++ b/meta/main.yml
@@ -11,7 +11,6 @@ galaxy_info:
         - "2"
     - name: EL
       versions:
-        - "7"
         - "8"
     - name: Ubuntu
       versions:
diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml
index 74b185c10ee125de9a4b7c98eff0a0ad3a2a5c7e..dd375cfbfb414ccca9491b3221800727b45f2ecd 100644
--- a/molecule/default/molecule.yml
+++ b/molecule/default/molecule.yml
@@ -11,13 +11,6 @@ platforms:
       http_proxy: "${http_proxy}"
       https_proxy: "${https_proxy}"
       no_proxy: "${no_proxy}"
-  - name: centos7-${CI_JOB_ID:-0}
-    image: code.europa.eu:4567/ecgalaxy/centos7-ansible:latest
-    pre_build_image: true
-    environment:
-      http_proxy: "${http_proxy}"
-      https_proxy: "${https_proxy}"
-      no_proxy: "${no_proxy}"
   - name: rockylinux8-${CI_JOB_ID:-0}
     image: code.europa.eu:4567/ecgalaxy/rockylinux8-ansible:latest
     pre_build_image: true
diff --git a/molecule/default/prepare.yml b/molecule/default/prepare.yml
index e43e7647ebf2c43d6fe9100a75f24d85875f8d94..255b665a8a412189113c6f5d4053656a99d630d4 100644
--- a/molecule/default/prepare.yml
+++ b/molecule/default/prepare.yml
@@ -9,7 +9,7 @@
         state: directory
         owner: root
         group: root
-        mode: 0755
+        mode: 'u=rwx,go=rx'
       when: ansible_os_family == 'Debian'
       changed_when: false
   environment:
diff --git a/tasks/install.yml b/tasks/install.yml
index eb2f8771f7309f3281ad266ccffb817cb543b9c7..bd021429d4f5052bef462dddca3d157beb409077 100644
--- a/tasks/install.yml
+++ b/tasks/install.yml
@@ -10,7 +10,7 @@
   ansible.builtin.get_url:
     url: "{{ soapui_url }}"
     dest: "{{ soapui_role_working_dir }}"
-    mode: 0777
+    mode: 'u=rwx,go=rx'
   register: downloaded_file
   become: true
 
diff --git a/tasks/main.yml b/tasks/main.yml
index 3debc703cd326511196f25243046263f0c07c5bb..57c48647d378e3bf0babcd1c22baf472927f82f6 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -4,7 +4,7 @@
     path: "{{ soapui_install_dir }}"
   register: soapui_already_installed
   become: true
-  
+
 - name: Include install
   ansible.builtin.include_tasks: install.yml
   when: not soapui_uninstall and not soapui_already_installed.stat.exists
diff --git a/tasks/uninstall.yml b/tasks/uninstall.yml
index 13db04806fd71ede1982b84977172eb2ed82a420..2c00be41a2e90d9e5e0f54ec5f1b101409559cfb 100644
--- a/tasks/uninstall.yml
+++ b/tasks/uninstall.yml
@@ -14,7 +14,7 @@
 
 - name: Remove all SoapUI desktop files
   ansible.builtin.file:
-    path:  "{{ item.path }}"
+    path: "{{ item.path }}"
     state: absent
   with_items: "{{ desktop_files.files }}"
   become: true