Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
removing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Mancuso committed May 26, 2017
1 parent df16f6b commit 5887b36
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions resources/change_own_mod.rb
Expand Up @@ -30,22 +30,4 @@
not_if { res.to_s.empty? }
end
end

# execute "change #{r.source} owner" do
# command "chown #{r.user} #{'-R' if r.recursive} #{r.source}"
# not_if { shell_out("find #{r.source} \! -user #{r.user}").stdout.strip == '' }
# not_if { r.user.to_s.empty? }
# end
#
# execute "change #{r.source} group" do
# command "chgrp #{r.group} #{'-R' if r.recursive} #{r.source}"
# not_if { shell_out("find #{r.source} \! -group #{r.group}").stdout.strip == '' }
# not_if { r.group.to_s.empty? }
# end
#
# execute "change #{r.source} mode" do
# command "chmod #{'-R' if r.recursive} #{r.mode} #{r.source}"
# not_if { shell_out("find #{r.source} \! -perm #{r.mode}").stdout.strip == '' }
# not_if { r.mode.to_s.empty? }
# end
end

0 comments on commit 5887b36

Please sign in to comment.