The FSC step is added to the wizard and takes full advantage of Redux for state management. This is still a work in progress. Supported features: 1. Select partition mountpoint prefix (e.g. /var, /home) 2. Edit partition mountpoint suffix (e.g. /home/videogames) 3. Change displayed units (KiB, MiB, GiB) Supported but buggy features: 1. Edit partition size Unsupported features: 1. Add partitions 2. Remove partitions 3. Validation
19 lines
535 B
TypeScript
19 lines
535 B
TypeScript
import React from 'react';
|
|
|
|
import { Alert } from '@patternfly/react-core';
|
|
|
|
const UsrSubDirectoriesDisabled = () => {
|
|
return (
|
|
<Alert
|
|
variant="warning"
|
|
title="Sub-directories for the /usr mount point are no longer supported"
|
|
isInline
|
|
>
|
|
Please note that including sub-directories in the /usr path is no longer
|
|
supported. Previously included mount points with /usr sub-directory are
|
|
replaced by /usr when recreating an image.
|
|
</Alert>
|
|
);
|
|
};
|
|
|
|
export default UsrSubDirectoriesDisabled;
|