diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-04-10 11:26:35 +0000 |
|---|---|---|
| committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-04-10 11:26:35 +0000 |
| commit | 04d2524bc1661cb44005bd2fa9ca3cd33a0d844a (patch) | |
| tree | 8de91444955a87111be7f2f2d4393b7a82946f47 | |
| parent | 36c22d25b1f3e3685810a32248a88ee02fe06983 (diff) | |
| download | vyos-1x-04d2524bc1661cb44005bd2fa9ca3cd33a0d844a.tar.gz vyos-1x-04d2524bc1661cb44005bd2fa9ca3cd33a0d844a.zip | |
T8459: Fix cron GeoIP update remove unexpected force option
Remove unexpected `--force` option for the GeoIP update cron task
$ /usr/libexec/vyos/geoip-update.py --force
usage: geoip-update.py [-h] [--init]
geoip-update.py: error: unrecognized arguments: --force
| -rw-r--r-- | src/etc/cron.d/vyos-geoip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/cron.d/vyos-geoip b/src/etc/cron.d/vyos-geoip index 9bb38a850..27d74ee8b 100644 --- a/src/etc/cron.d/vyos-geoip +++ b/src/etc/cron.d/vyos-geoip @@ -1 +1 @@ -30 4 * * 1 root sg vyattacfg "/usr/libexec/vyos/geoip-update.py --force" >/tmp/geoip-update.log 2>&1 +30 4 * * 1 root sg vyattacfg "/usr/libexec/vyos/geoip-update.py" >/tmp/geoip-update.log 2>&1 |
