lib/specinfra/command/aix/base/file.rb in specinfra-2.60.1 vs lib/specinfra/command/aix/base/file.rb in specinfra-2.60.2
- old
+ new
@@ -3,10 +3,10 @@
def check_is_accessible_by_user(file, user, access)
"su -s sh -c \"test -#{access} #{file}\" #{user}"
end
def check_has_mode(file, mode)
- raise NotImplementedError.new('check_has_mode is not implemented in Specinfra::Command::AIX::Base::File')
+ "find #{file} -prune -perm #{mode} | grep ^#{file}$"
end
def check_is_owned_by(file, owner)
regexp = "^#{owner}$"
"ls -al #{escape(file)} | awk '{print $3}' | grep -- #{escape(regexp)}"