8 lines
145 B
Bash
Executable File
8 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
setenforce 0
|
|
|
|
sed -i -e "s@^SELINUX=.*@SELINUX=disabled@g" /etc/selinux/config
|
|
|
|
grubby --update-kernel ALL --args selinux=0
|