class Specinfra::Command::Solaris::Base::User

Public Class Methods

check_belongs_to_group(user, group) click to toggle source
# File lib/specinfra/command/solaris/base/user.rb, line 3
def check_belongs_to_group(user, group)
  "id -Gn #{escape(user)} | grep -- #{escape(group)}"
end
check_has_home_directory(user, path_to_home) click to toggle source
# File lib/specinfra/command/solaris/base/user.rb, line 7
def check_has_home_directory(user, path_to_home)
  "getent passwd #{escape(user)} | cut -f 6 -d ':' | grep -w -- #{escape(path_to_home)}"
end
check_has_login_shell(user, path_to_shell) click to toggle source
# File lib/specinfra/command/solaris/base/user.rb, line 11
def check_has_login_shell(user, path_to_shell)
  "getent passwd #{escape(user)} | cut -f 7 -d ':' | grep -w -- #{escape(path_to_shell)}"
end