50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import React, { useEffect } from 'react';
|
|
|
|
import { Button, Form, Text, Title } from '@patternfly/react-core';
|
|
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
|
|
|
import { Oscap } from './Oscap';
|
|
|
|
import { imageBuilderApi } from '../../../../store/enhancedImageBuilderApi';
|
|
import { useAppSelector } from '../../../../store/hooks';
|
|
import { selectDistribution } from '../../../../store/wizardSlice';
|
|
|
|
const OscapStep = () => {
|
|
const prefetchOscapProfile = imageBuilderApi.usePrefetch(
|
|
'getOscapProfiles',
|
|
{}
|
|
);
|
|
const release = useAppSelector(selectDistribution);
|
|
useEffect(() => {
|
|
prefetchOscapProfile({ distribution: release });
|
|
}, []);
|
|
|
|
return (
|
|
<Form>
|
|
<Title headingLevel="h1" size="xl">
|
|
OpenSCAP profile
|
|
</Title>
|
|
<Text>
|
|
OpenSCAP enables you to automatically monitor the adherence of your
|
|
registered RHEL systems to a selected regulatory compliance profile.
|
|
<br />
|
|
<Button
|
|
component="a"
|
|
target="_blank"
|
|
variant="link"
|
|
icon={<ExternalLinkAltIcon />}
|
|
iconPosition="right"
|
|
isInline
|
|
href={
|
|
'https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/security_guide/chap-compliance_and_vulnerability_scanning'
|
|
}
|
|
>
|
|
Documentation
|
|
</Button>
|
|
</Text>
|
|
<Oscap />
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default OscapStep;
|