1
0
mirror of https://github.com/containers/ramalama.git synced 2026-02-05 06:46:39 +01:00

Fix get/set selbool references.

Documentation:
* As installed in current versions of Fedora, these commands are not
  'boolean', but 'bool'.
* The set command will give an error message when the value of the
  boolean is not set.

Signed-off-by: Jason Guiditta <jguiditt@redhat.com>
This commit is contained in:
Jason Guiditta
2025-04-04 10:50:58 -04:00
parent 5a30bcc5f3
commit ca63ba27e5

View File

@@ -114,13 +114,13 @@ Follow the installation instructions provided in the [NVIDIA Container Toolkit i
To check the status of the boolean, run the following:
```bash
getseboolean container_use_devices
getsebool container_use_devices
```
If the result of the command shows that the boolean is `off`, run the following to turn the boolean on:
```bash
sudo setseboolean -P container_use_devices
sudo setsebool -P container_use_devices 1
```
## Troubleshooting