mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-15 22:39:29 +00:00
Compare commits
14 commits
c63826c99f
...
40147dc1cd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40147dc1cd | ||
|
|
9fd127eb6d | ||
|
|
cf7d7f9508 | ||
|
|
45f446e688 | ||
|
|
7b6c18eef3 | ||
|
|
d3da397b87 | ||
|
|
e9cd631be5 | ||
|
|
d98b9624d3 | ||
|
|
58e41d641c | ||
|
|
5acdcabcc1 | ||
|
|
ee62084c56 | ||
|
|
7b3ad6f86e | ||
|
|
ed42bef06c | ||
|
|
df3d1f2f54 |
11 changed files with 69 additions and 12 deletions
|
|
@ -17,7 +17,7 @@ Initial commands
|
||||||
Run the complete base installation:
|
Run the complete base installation:
|
||||||
|
|
||||||
{
|
{
|
||||||
:local BaseUrl "https://git.eworm.de/cgit/routeros-scripts/plain/";
|
:local BaseUrl "https://rsc.eworm.de/main/";
|
||||||
:local CertCommonName "ISRG Root X2";
|
:local CertCommonName "ISRG Root X2";
|
||||||
:local CertFileName "ISRG-Root-X2.pem";
|
:local CertFileName "ISRG-Root-X2.pem";
|
||||||
:local CertFingerprint "69729b8e15a86efc177a57afb7171dfc64add28c2fca8cf1507e34453ccb1470";
|
:local CertFingerprint "69729b8e15a86efc177a57afb7171dfc64add28c2fca8cf1507e34453ccb1470";
|
||||||
|
|
|
||||||
15
README.md
15
README.md
|
|
@ -87,7 +87,7 @@ If you intend to download the scripts from a
|
||||||
different location (for example from github.com) install the corresponding
|
different location (for example from github.com) install the corresponding
|
||||||
certificate chain.
|
certificate chain.
|
||||||
|
|
||||||
/tool/fetch "https://git.eworm.de/cgit/routeros-scripts/plain/certs/ISRG-Root-X2.pem" dst-path="isrg-root-x2.pem";
|
/tool/fetch "https://rsc.eworm.de/main/certs/ISRG-Root-X2.pem" dst-path="isrg-root-x2.pem";
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
@ -125,7 +125,7 @@ date and time is set correctly!
|
||||||
|
|
||||||
Now let's download the main scripts and add them in configuration on the fly.
|
Now let's download the main scripts and add them in configuration on the fly.
|
||||||
|
|
||||||
:foreach Script in={ "global-config"; "global-config-overlay"; "global-functions" } do={ /system/script/add name=$Script owner=$Script source=([ /tool/fetch check-certificate=yes-without-crl ("https://git.eworm.de/cgit/routeros-scripts/plain/" . $Script . ".rsc") output=user as-value]->"data"); };
|
:foreach Script in={ "global-config"; "global-config-overlay"; "global-functions" } do={ /system/script/add name=$Script owner=$Script source=([ /tool/fetch check-certificate=yes-without-crl ("https://rsc.eworm.de/main/" . $Script . ".rsc") output=user as-value]->"data"); };
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
@ -404,14 +404,15 @@ immediately remove the link in question.
|
||||||
Upstream
|
Upstream
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
[rsc.eworm.de](https://rsc.eworm.de/)
|
||||||
|
|
||||||
[](https://rsc.eworm.de/)
|
[](https://rsc.eworm.de/)
|
||||||
|
|
||||||
URL:
|
### Code hosting
|
||||||
[GitHub.com](https://github.com/eworm-de/routeros-scripts#routeros-scripts)
|
|
||||||
|
|
||||||
Mirror:
|
* [eworm.de](https://git.eworm.de/cgit/routeros-scripts/about/)
|
||||||
[eworm.de](https://git.eworm.de/cgit/routeros-scripts/about/)
|
* [GitHub.com](https://github.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||||
[GitLab.com](https://gitlab.com/eworm-de/routeros-scripts#routeros-scripts)
|
* [GitLab.com](https://gitlab.com/eworm-de/routeros-scripts#routeros-scripts)
|
||||||
|
|
||||||
---
|
---
|
||||||
[⬆️ Go back to top](#top)
|
[⬆️ Go back to top](#top)
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,6 @@ HTML := $(wildcard *.html)
|
||||||
all: docs
|
all: docs
|
||||||
|
|
||||||
docs: $(HTML)
|
docs: $(HTML)
|
||||||
sed -i '/href=/s|\.md|\.html|' $(HTML)
|
sed -i -e '/href=/s|\.md|\.html|' \
|
||||||
|
-e '/blockquote/s|/\*! display \*/|display: none;|' \
|
||||||
|
$(HTML)
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,12 @@ sed \
|
||||||
-e "s|__TITLE__|$(head -n1 "${1}")|" \
|
-e "s|__TITLE__|$(head -n1 "${1}")|" \
|
||||||
-e "s|__STYLE__|$(realpath --relative-to="${RELTO}" general/style.css)|" \
|
-e "s|__STYLE__|$(realpath --relative-to="${RELTO}" general/style.css)|" \
|
||||||
-e "s|__LOGO__|$(realpath --relative-to="${RELTO}" logo.png)|" \
|
-e "s|__LOGO__|$(realpath --relative-to="${RELTO}" logo.png)|" \
|
||||||
|
-e "s|__EWORM__|$(realpath --relative-to="${RELTO}" general/eworm-meadow.avif)|" \
|
||||||
|
-e "s|__QR_CODE__|$(realpath --relative-to="${RELTO}" general/qr-code.png)|" \
|
||||||
< "${0}.d/head.html"
|
< "${0}.d/head.html"
|
||||||
markdown -f toc,idanchor "${1}" | sed \
|
markdown -f toc,idanchor "${1}" | sed \
|
||||||
-e 's/href="\([-_\./[:alnum:]]*\)\.md\(#[-[:alnum:]]*\)\?"/href="\1.html\2"/g' \
|
-e 's/href="\([-_\./[:alnum:]]*\)\.md\(#[-[:alnum:]]*\)\?"/href="\1.html\2"/g' \
|
||||||
-e '/<h[1234] /s| id="\(.*\)">| id="\L\1">|' \
|
-e '/<h[1234] /s| id="\(.*\)">| id="\L\1">|' \
|
||||||
-e '/<h[1234] /s|-2c-||g' -e '/<h[1234] /s|--26-amp-3b-||g'
|
-e '/<h[1234] /s|-2c-||g' -e '/<h[1234] /s|--26-amp-3b-||g' \
|
||||||
|
-e '/The above link may be broken on code hosting sites/s|blockquote|blockquote style="display: none;"|'
|
||||||
printf '</body></html>'
|
printf '</body></html>'
|
||||||
|
|
|
||||||
|
|
@ -4,3 +4,12 @@
|
||||||
<link rel="stylesheet" type="text/css" href="__STYLE__">
|
<link rel="stylesheet" type="text/css" href="__STYLE__">
|
||||||
<link rel="icon" type="image/png" href="__LOGO__">
|
<link rel="icon" type="image/png" href="__LOGO__">
|
||||||
</head><body>
|
</head><body>
|
||||||
|
|
||||||
|
<table><tr>
|
||||||
|
<td><img src="__EWORM__" alt="eworm on meadow" /></td>
|
||||||
|
<td><img src="__QR_CODE__" alt="QR code: rsc.eworm.de" /></td>
|
||||||
|
<td class="head"><span class="top">RouterOS Scripts</span><br />
|
||||||
|
<span class="bottom">a collection of scripts for MikroTik RouterOS</span></td>
|
||||||
|
</tr></table>
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,23 @@
|
||||||
<script src="logo-color.d/script.js"></script>
|
<script src="logo-color.d/script.js"></script>
|
||||||
</head><body>
|
</head><body>
|
||||||
|
|
||||||
|
<table><tr>
|
||||||
|
<td><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td>
|
||||||
|
<td><img src="../general/qr-code.png" alt="QR code: rsc.eworm.de" /></td>
|
||||||
|
<td class="head"><span class="top">RouterOS Scripts</span><br />
|
||||||
|
<span class="bottom">a collection of scripts for MikroTik RouterOS</span></td>
|
||||||
|
</tr></table>
|
||||||
|
<hr />
|
||||||
|
|
||||||
<h1>Logo Color Changer</h1>
|
<h1>Logo Color Changer</h1>
|
||||||
|
|
||||||
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
||||||
|
|
||||||
|
<blockquote style="/*! display */"><p>💡️ <strong>Hint</strong>: This site or links
|
||||||
|
on it may be broken on code hosting sites. Use
|
||||||
|
<a href="https://rsc.eworm.de/main/contrib/logo-color.html">Logo Color Changer</a>
|
||||||
|
instead.</p></blockquote>
|
||||||
|
|
||||||
<p>You want the logo for your own notifications? But you joined the
|
<p>You want the logo for your own notifications? But you joined the
|
||||||
<a href="https://t.me/routeros_scripts">Telegram Group</a> and want
|
<a href="https://t.me/routeros_scripts">Telegram Group</a> and want
|
||||||
something that differentiates? Color it!</p>
|
something that differentiates? Color it!</p>
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,23 @@
|
||||||
<script src="notification.d/script.js"></script>
|
<script src="notification.d/script.js"></script>
|
||||||
</head><body>
|
</head><body>
|
||||||
|
|
||||||
|
<table><tr>
|
||||||
|
<td><img src="../general/eworm-meadow.avif" alt="eworm on meadow" /></td>
|
||||||
|
<td><img src="../general/qr-code.png" alt="QR code: rsc.eworm.de" /></td>
|
||||||
|
<td class="head"><span class="top">RouterOS Scripts</span><br />
|
||||||
|
<span class="bottom">a collection of scripts for MikroTik RouterOS</span></td>
|
||||||
|
</tr></table>
|
||||||
|
<hr />
|
||||||
|
|
||||||
<h1>Notification Generator</h1>
|
<h1>Notification Generator</h1>
|
||||||
|
|
||||||
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
<p><a href="../README.md">⬅️ Go back to main README</a></p>
|
||||||
|
|
||||||
|
<blockquote style="/*! display */"><p>💡️ <strong>Hint</strong>: This site or links
|
||||||
|
on it may be broken on code hosting sites. Use
|
||||||
|
<a href="https://rsc.eworm.de/main/contrib/notification.html">Notification Generator</a>
|
||||||
|
instead.</p></blockquote>
|
||||||
|
|
||||||
<div class="notification">
|
<div class="notification">
|
||||||
<img src="../logo.svg" alt="logo" class="logo" width=48 height=48>
|
<img src="../logo.svg" alt="logo" class="logo" width=48 height=48>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
|
||||||
|
|
@ -109,6 +109,10 @@ chat with [BotFather ↗️](https://t.me/BotFather) and set it there.
|
||||||
Have a look at my [Logo Color Changer](../../contrib/logo-color.html)
|
Have a look at my [Logo Color Changer](../../contrib/logo-color.html)
|
||||||
to create a colored version of this scripts' logo.
|
to create a colored version of this scripts' logo.
|
||||||
|
|
||||||
|
> 💡️ **Hint**: The above link may be broken on code hosting sites.
|
||||||
|
> Use [Logo Color Changer](https://rsc.eworm.de/main/contrib/logo-color.html)
|
||||||
|
> instead.
|
||||||
|
|
||||||
See also
|
See also
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ Usage and invocation
|
||||||
The function `$ScriptRunOnce` expects an URL (or name if
|
The function `$ScriptRunOnce` expects an URL (or name if
|
||||||
`ScriptRunOnceBaseUrl` is given) pointing to a script as parameter.
|
`ScriptRunOnceBaseUrl` is given) pointing to a script as parameter.
|
||||||
|
|
||||||
$ScriptRunOnce https://git.eworm.de/cgit/routeros-scripts/plain/doc/mod/scriptrunonce.d/hello-world.rsc;
|
$ScriptRunOnce https://rsc.eworm.de/main/doc/mod/scriptrunonce.d/hello-world.rsc;
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
||||||
BIN
general/eworm-meadow.avif
Normal file
BIN
general/eworm-meadow.avif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
|
|
@ -18,7 +18,7 @@ a:hover {
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 4px solid #ccc;
|
border-left: 4px solid #ccc;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
color: #777;
|
color: #555;
|
||||||
}
|
}
|
||||||
code {
|
code {
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
|
|
@ -68,6 +68,18 @@ pre code {
|
||||||
span.link {
|
span.link {
|
||||||
color: #863600;
|
color: #863600;
|
||||||
}
|
}
|
||||||
|
td.head {
|
||||||
|
line-height: 1.2;
|
||||||
|
padding: 0 2em;
|
||||||
|
}
|
||||||
|
td.head .top {
|
||||||
|
font-size: 250%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
td.head .bottom {
|
||||||
|
font-size: 125%;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
@media only screen and (orientation: landscape) {
|
@media only screen and (orientation: landscape) {
|
||||||
body {
|
body {
|
||||||
margin-left: 10vw;
|
margin-left: 10vw;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue