Actions
Bug #5198
closedcheck-rudder-agent tries to use the stat command on AIX
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
Name check:
Fix check:
Regression:
Description
AIX has no stat command, only istat, without the same options.
We should add the following condition instead:
if [ "z${OS_FAMILY}" = "zAIX" ]; then CF_LOCK_SIZE=`istat "${CFE_DIR}/state/cf_lock.tcdb" | grep Length | sed "s%^.*Length \([0-9]*\) bytes%\1%"` else CF_LOCK_SIZE=`stat -c%s "${CFE_DIR}/state/cf_lock.tcdb"` fi
Added by Matthieu CERDA almost 11 years ago
Added by Matthieu CERDA almost 11 years ago
Merge pull request #428 from Kegeruneku/bug_5198/int/5198_use_istat_on_aix_no_stat
Fixes #5198: Do not use stat on AIX in check-rudder-agent, but istat ins...
Actions
Fixes #5198: Do not use stat on AIX in check-rudder-agent, but istat instead