aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJosh Paetzel <jpaetzel@FreeBSD.org>2011-06-15 19:33:02 +0000
committerJosh Paetzel <jpaetzel@FreeBSD.org>2011-06-15 19:33:02 +0000
commit00a3d0dae23be61c3387f4d236979512717fbc13 (patch)
treee0b9c07e42546a90e8f8ee6cc353d98f9c7b1181 /etc
parent8e124d2153692374a5894409d732769fc3f4abc7 (diff)
downloadsrc-00a3d0dae23be61c3387f4d236979512717fbc13.tar.gz
src-00a3d0dae23be61c3387f4d236979512717fbc13.zip
Eliminate extraneous pipelines and tr calls.
Approved by: kib (mentor) MFC after: 3 days
Notes
Notes: svn path=/head/; revision=223117
Diffstat (limited to 'etc')
-rwxr-xr-xetc/periodic/daily/800.scrub-zfs2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/periodic/daily/800.scrub-zfs b/etc/periodic/daily/800.scrub-zfs
index f1d74e3ff8ce..b153b66370ec 100755
--- a/etc/periodic/daily/800.scrub-zfs
+++ b/etc/periodic/daily/800.scrub-zfs
@@ -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