Skip to content

Commit

Permalink
nit. re-arrange scriptlet flag table
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusl committed Jan 4, 2024
1 parent 1121d85 commit 9cf7b7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ Scriptlet settings can be configured via `*_script_flags` and `*_script_prog` se

**Scriptlet Flags**

| Flag | Setting Value | Description |
| ---- | ------------- | ----------- |
| `RPMSCRIPT_FLAG_EXPAND` | 1 (`0b001`) | Enables macro expansion |
| `RPMSCRIPT_FLAG_QFORMAT` | 2 (`0b010`) | Enables header query format expansion |
| `RPMSCRIPT_FLAG_CRITICAL` | 4 (`0b100`) | Enables critical severity for scriplet success or failure |
| Flag | Setting Value | Description | Example Usage |
| ---- | ------------- | ----------- | ------- |
| `RPMSCRIPT_FLAG_EXPAND` | 1 | Enables macro expansion | `pre_install_script_flags = 0b001` |
| `RPMSCRIPT_FLAG_QFORMAT` | 2 | Enables header query format expansion | `pre_install_script_flags = 0b010` |
| `RPMSCRIPT_FLAG_CRITICAL` | 4 | Enables critical severity for scriplet success or failure | `pre_install_script_flags = 0b100` |

**Example**

Expand Down

0 comments on commit 9cf7b7c

Please sign in to comment.