2021-06-09 14:28:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2021-06-14 16:44:12 +00:00
|
|
|
# Install needed packages
|
2024-05-17 07:58:51 +00:00
|
|
|
dnf -y install /usr/bin/stap-prep
|
2021-06-09 14:28:54 +00:00
|
|
|
stap-prep
|
|
|
|
|
2021-06-14 16:44:12 +00:00
|
|
|
# Report installed packages
|
|
|
|
stap-report
|
|
|
|
|
|
|
|
# Set up SELinux so that it allows for userspace probing
|
|
|
|
setsebool allow_execmod on
|
|
|
|
setsebool allow_execstack on
|
|
|
|
setsebool deny_ptrace off
|
|
|
|
|
2021-06-09 14:28:54 +00:00
|
|
|
set +xe
|