mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 06:07:31 -04:00
Eliminate extraneous pipelines and tr calls.
Approved by: kib (mentor) MFC after: 3 days
This commit is contained in:
parent
8e124d2153
commit
00a3d0dae2
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ case "$daily_scrub_zfs_enable" in
|
|||
esac
|
||||
|
||||
# determine how many days shall be between scrubs
|
||||
eval _pool_threshold=\${daily_scrub_zfs_$(echo "${pool}"|tr -s "-" "_"|tr -s "." "_"|tr -s ":" "_")_threshold}
|
||||
eval _pool_threshold=\${daily_scrub_zfs_$(echo "${pool}"|tr ".:-" "_")_threshold}
|
||||
if [ -z "${_pool_threshold}" ];then
|
||||
_pool_threshold=${daily_scrub_zfs_default_threshold}
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue