CreateImageWizard: Add /tmp mountpoint
/tmp was added to the list of valid mountpoints in the filesystem customization step. No validation is necessary at this time because rhel-86, centos-8, and centos-9 all support a /tmp mountpoint.
This commit is contained in:
parent
e160aec170
commit
480c754b37
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ import path from 'path';
|
|||
|
||||
const MountPoint = ({ ...props }) => {
|
||||
// check '/' last!
|
||||
const validPrefixes = [ '/home', '/opt', '/srv', '/usr', '/usr/local', '/var', '/app', '/data', '/' ];
|
||||
const validPrefixes = [ '/app', '/data', '/home', '/opt', '/srv', '/tmp', '/usr', '/usr/local', '/var', '/' ];
|
||||
const [ isOpen, setIsOpen ] = useState(false);
|
||||
const [ prefix, setPrefix ] = useState('/');
|
||||
const [ suffix, setSuffix ] = useState('');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue