Missed one path
This commit is contained in:
parent
be9f1a7152
commit
7363284353
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ if [[ $(pgrep -a -f "${0}" | grep -v scriptherder | wc -l) -eq 2 ]]; then
|
||||||
errors=''
|
errors=''
|
||||||
for container in $(/usr/local/bin/get_containers); do
|
for container in $(/usr/local/bin/get_containers); do
|
||||||
error_ids="${error_ids} ${container}: "
|
error_ids="${error_ids} ${container}: "
|
||||||
for id in $(nocc "${container}" files_external:list --all --output json | jq '.[].mount_id' | jq .); do
|
for id in $(/usr/local/bin/nocc "${container}" files_external:list --all --output json | jq '.[].mount_id' | jq .); do
|
||||||
/usr/local/bin/nocc "${container}" files_external:scan "${id}" | grep Error
|
/usr/local/bin/nocc "${container}" files_external:scan "${id}" | grep Error
|
||||||
# shellcheck disable=SC2181
|
# shellcheck disable=SC2181
|
||||||
if [[ ${?} -eq 0 ]]; then
|
if [[ ${?} -eq 0 ]]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue