diff options
author | krant <aleksey.vasilenko@gmail.com> | 2024-02-21 17:27:04 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2024-02-21 22:00:35 -0800 |
commit | 7fbb810af3c1aeb475bc5893d0b6b25bb9435e77 (patch) | |
tree | 578dba59cb1c8e56bcbd979b01dbdfee2f3961c0 /utils/sysstat/files | |
parent | 365ab3cfcd93b92fee2136976d938f9c848d0c9d (diff) |
sysstat: update to 12.7.5
- Update package URLs
- Add missing xz dependency
- Fix incorrectly set sa_dir
- Refresh the patch
Signed-off-by: krant <aleksey.vasilenko@gmail.com>
Diffstat (limited to 'utils/sysstat/files')
-rw-r--r-- | utils/sysstat/files/sysstat.config | 1 | ||||
-rwxr-xr-x | utils/sysstat/files/sysstat.init | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/utils/sysstat/files/sysstat.config b/utils/sysstat/files/sysstat.config index 638b3798c..5193460dd 100644 --- a/utils/sysstat/files/sysstat.config +++ b/utils/sysstat/files/sysstat.config @@ -2,6 +2,5 @@ config sysstat 'sysstat' option log_history '7' option compressafter '10' option sadc_options '' - option sa_dir '/var/log/sysstat' option zip 'xz' option enabled 'true' diff --git a/utils/sysstat/files/sysstat.init b/utils/sysstat/files/sysstat.init index e7b75e246..6e6b092c6 100755 --- a/utils/sysstat/files/sysstat.init +++ b/utils/sysstat/files/sysstat.init @@ -13,7 +13,6 @@ validate_sysstat_section() { 'log_history:uinteger' \ 'compressafter:uinteger' \ 'sadc_options:string' \ - 'sa_dir:string' \ 'zip:string' \ 'enabled:string' } @@ -30,7 +29,6 @@ start_sysstat_instance() { echo "HISTORY=$log_history" echo "COMPRESSAFTER=$compressafter" echo "SADC_OPTIONS=\"$sadc_options\"" - echo "SA_DIR=\"$sa_dir\"" echo "ZIP=\"$zip\"" echo "ENABLED=\"$enabled\"" } > $SYSSTAT_CFG |