summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/chef/provider/mount/mount.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/provider/mount/mount.rb b/lib/chef/provider/mount/mount.rb
index 71cecb47aa..71e103e4aa 100644
--- a/lib/chef/provider/mount/mount.rb
+++ b/lib/chef/provider/mount/mount.rb
@@ -203,7 +203,8 @@ class Chef
end
end
# Removed "/" from the end of str, because it was causing idempotency issue.
- @real_device.chomp("/")
+ # On AIX, device property value can be "/"
+ !RUBY_PLATFORM.match?(/aix/i) ? @real_device.chomp("/") : @real_device
end
def device_logstring