Selinux: Allow qm_t to mmap qm_file_t char devices #1128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Cgroup Version | |
on: [push, pull_request] # Trigger on push or pull request. Adjust as needed. | |
jobs: | |
check-cgroup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Check cgroup version | |
run: | | |
echo "Checking cgroup version and settings..." | |
grep cgroup /proc/filesystems | |
mount | grep cgroup | |
cat /proc/cgroups | |
cat /sys/fs/cgroup/cgroup.controllers |