This commit adds the Compliance service's API, which we can query for a list of SCAP security policies. In a follow-up PR, we will allow the user to optionally select a policy when creating an image in the wizard.
13 lines
467 B
Bash
13 lines
467 B
Bash
#!/bin/bash
|
|
|
|
# Run commands in the background using & operator
|
|
npx @rtk-query/codegen-openapi ./api/config/imageBuilder.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/rhsm.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/contentSources.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/provisioning.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/edge.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/compliance.ts &
|
|
|
|
# Wait for all background jobs to finish
|
|
wait
|
|
|