mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
global-functions: introduce $MkDir
This is a dirty hack... RouterOS does not support creating directories, so we mis-use http server and fetch tool.
This commit is contained in:
@ -27,6 +27,7 @@
|
||||
:global GetRandom;
|
||||
:global LogPrintExit;
|
||||
:global MailServerIsUp;
|
||||
:global MkDir;
|
||||
:global ParseKeyValueStore;
|
||||
:global RandomDelay;
|
||||
:global ScriptFromTerminal;
|
||||
@ -315,6 +316,23 @@
|
||||
:return false;
|
||||
}
|
||||
|
||||
# create directory
|
||||
:set MkDir do={
|
||||
:local Dir [ :tostr $1 ];
|
||||
|
||||
:global WaitForFile;
|
||||
|
||||
:if ([ / file print count-only where name=$Dir type="directory" ] = 0) do={
|
||||
:local WwwVal [ / ip service get www ];
|
||||
/ ip service set www address=127.0.0.1/32 disabled=no port=80;
|
||||
/ tool fetch http://127.0.0.1/ dst-path=($Dir . "/tmp");
|
||||
$WaitForFile ($Dir . "/tmp");
|
||||
/ file remove ($Dir . "/tmp");
|
||||
/ ip service set www address=($WwwVal->"address") \
|
||||
disabled=($WwwVal->"disabled") port=($WwwVal->"port");
|
||||
}
|
||||
}
|
||||
|
||||
# parse key value store
|
||||
:set ParseKeyValueStore do={
|
||||
:global CharacterReplace;
|
||||
|
Reference in New Issue
Block a user