mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
remove-packages: remove outdated packages only
This commit is contained in:
@ -2,6 +2,16 @@
|
|||||||
# RouterOS script: remove-packages
|
# RouterOS script: remove-packages
|
||||||
# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de>
|
# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de>
|
||||||
#
|
#
|
||||||
# remove packages (*.npk) from storage
|
# remove packages (*.npk) not matching installed version
|
||||||
|
|
||||||
/ file remove [ / file find type="package" ];
|
:local version [ / system package update get installed-version ];
|
||||||
|
|
||||||
|
:foreach package in=[ / file find type="package" ] do={
|
||||||
|
:local filename [ / file get $package name ];
|
||||||
|
:if ($filename~$version) do={
|
||||||
|
:log debug ("Package file " . $filename . " is up-to-date.");
|
||||||
|
} else={
|
||||||
|
:log debug ("Removing old packge file: " . $filename);
|
||||||
|
/ file remove $package;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user