mirror of
https://github.com/nymurbd/MikroTik-scripts.git
synced 2025-07-02 22:24:30 +02:00
global-functions: $MkDir: catch error on creating tmpfs
This commit is contained in:
parent
c8dcd92e6b
commit
f9839647d4
1 changed files with 7 additions and 1 deletions
|
@ -574,7 +574,13 @@
|
|||
:if ([ :len [ /disk/find where slot=tmpfs type=tmpfs ] ] = 0) do={
|
||||
$LogPrintExit2 info $0 ("Creating disk of type tmpfs.") false;
|
||||
/file/remove [ find where name="tmpfs" type="directory" ];
|
||||
:do {
|
||||
[ :parse "/disk/add slot=tmpfs type=tmpfs tmpfs-max-size=([ /system/resource/get total-memory ] / 3);" ];
|
||||
$WaitForFile "tmpfs";
|
||||
} on-error={
|
||||
$LogPrintExit2 warning $0 ("Creating disk of type tmpfs failed!") false;
|
||||
:set Error true;
|
||||
}
|
||||
}
|
||||
:set Continue true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue