2020-03-27 21:40:02 +01:00
Download packages for CAP upgrade from CAPsMAN
=============================================
2024-03-06 14:30:18 +01:00
[](https://github.com/eworm-de/routeros-scripts/stargazers)
[](https://github.com/eworm-de/routeros-scripts/network)
[](https://github.com/eworm-de/routeros-scripts/watchers)
[](https://mikrotik.com/download/changelogs/)
[](https://t.me/routeros_scripts)
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick& hosted_button_id=A4ZXBD6YS2W8J)
2023-01-10 14:45:27 +01:00
[⬅️ Go back to main README ](../README.md )
2020-03-27 21:40:02 +01:00
2022-02-12 13:05:56 +01:00
> ℹ ️ **Info**: This script can not be used on its own but requires the base
2022-02-11 23:34:39 +01:00
> installation. See [main README](../README.md) for details.
2021-05-03 15:07:50 +02:00
2020-03-27 21:40:02 +01:00
Description
-----------
CAPsMAN can upgrate CAP devices. I f CAPsMAN device and CAP device(s) are
differnet architecture you need to store packages for CAP device's
architecture on local storage.
This script automatically downloads these packages.
Requirements and installation
-----------------------------
2023-12-05 10:59:23 +01:00
Make sure you have the `package-path` set in your CAPsMAN configuration,
as that is where packages are downloaded to and where the system expects
them.
Then just install the script on CAPsMAN device.
2024-03-05 11:06:53 +01:00
Depending on whether you use `wifi` package (`/interface/wifi` ) or legacy
wifi with CAPsMAN (`/caps-man` ) you need to install a different script.
2020-03-27 21:40:02 +01:00
2024-03-05 11:06:53 +01:00
For `wifi` :
2023-11-14 10:26:06 +01:00
$ScriptInstallUpdate capsman-download-packages.wifi;
2023-08-07 12:18:47 +02:00
For legacy CAPsMAN:
$ScriptInstallUpdate capsman-download-packages.capsman;
2024-03-05 11:06:53 +01:00
Optionally add a scheduler to run after startup. For `wifi` :
2023-11-14 10:26:06 +01:00
/system/scheduler/add name=capsman-download-packages on-event="/system/script/run capsman-download-packages.wifi;" start-time=startup;
2023-08-07 12:18:47 +02:00
For legacy CAPsMAN:
/system/scheduler/add name=capsman-download-packages on-event="/system/script/run capsman-download-packages.capsman;" start-time=startup;
2020-03-27 21:40:02 +01:00
2022-03-22 22:33:46 +01:00
Packages available in local storage in older version are downloaded
2023-08-07 16:44:26 +02:00
unconditionally.
2023-12-20 12:11:12 +01:00
If no packages are found the script downloads a default set of packages:
2023-11-14 10:26:06 +01:00
2023-12-20 12:29:24 +01:00
* `wifi` : `routeros` and `wifi-qcom` for *arm* and *arm64* , `wifi-qcom-ac` for *arm*
2023-12-20 12:11:12 +01:00
* legacy CAPsMAN: `routeros` and `wireless` for *arm* and *mipsbe*
2020-03-27 21:40:02 +01:00
2023-11-14 14:04:30 +01:00
> ℹ ️ **Info**: If you have packages in the directory and things go wrong for
> what ever unknown reason: Remove **all** packages and start over.
2020-03-27 21:40:02 +01:00
Usage and invocation
--------------------
Run the script manually:
2023-11-14 10:26:06 +01:00
/system/script/run capsman-download-packages.wifi;
2020-03-27 21:40:02 +01:00
... or from scheduler.
After package download all out-of-date CAP devices are upgraded automatically.
For a rolling upgrade install extra script
[capsman-rolling-upgrade ](capsman-rolling-upgrade.md ).
See also
--------
* [Run rolling CAP upgrades from CAPsMAN ](capsman-rolling-upgrade.md )
---
2023-01-10 14:45:27 +01:00
[⬅️ Go back to main README ](../README.md )
[⬆️ Go back to top ](#top )