aboutsummaryrefslogtreecommitdiffstats
path: root/etc/init.d
diff options
context:
space:
mode:
authorGeorgy Yakovlev <[email protected]>2019-08-29 12:14:48 -0800
committerBrian Behlendorf <[email protected]>2019-08-29 13:14:48 -0700
commite2fcfa70e36a9f7c059ec64d787f37c6bd9ae48c (patch)
tree9c6aecc543421e46beee1646b04baf28ff756e88 /etc/init.d
parent815a6456928b56b98bea3c9508f4037b6d6f4759 (diff)
etc/init.d/zfs-functions.in: remove arch warning
Remove the x86_64 warning, it's no longer the case that this is the only supported architecture. Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Georgy Yakovlev <[email protected]> Closes: #9177
Diffstat (limited to 'etc/init.d')
-rw-r--r--etc/init.d/zfs-functions.in7
1 files changed, 0 insertions, 7 deletions
diff --git a/etc/init.d/zfs-functions.in b/etc/init.d/zfs-functions.in
index 14667b4e9..d65c79dcf 100644
--- a/etc/init.d/zfs-functions.in
+++ b/etc/init.d/zfs-functions.in
@@ -294,13 +294,6 @@ checksystem()
# Just make sure that /dev/zfs is created.
udev_trigger
- if ! [ "$(uname -m)" = "x86_64" ]; then
- echo "Warning: You're not running 64bit. Currently native zfs in";
- echo " Linux is only supported and tested on 64bit.";
- # should we break here? People doing this should know what they
- # do, thus i'm not breaking here.
- fi
-
return 0
}