class Ardecy::Harden::Perms::Directory::Home

Public Class Methods

new(args) click to toggle source
Calls superclass method Ardecy::Harden::Perms::DirCheck::new
# File lib/ardecy/harden/perms.rb, line 53
def initialize(args)
  super
  @exp = 0700
end

Public Instance Methods

x() click to toggle source
# File lib/ardecy/harden/perms.rb, line 58
def x
  Dir.glob('/home/*').each { |d|
    @name = d
    scan
    fix
  }
end