class Specinfra::Command::Openbsd::Base::User

Public Class Methods

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