class Specinfra::Command::Freebsd::V6::User
Public Class Methods
check_has_home_directory(user, path_to_home)
click to toggle source
# File lib/specinfra/command/freebsd/v6/user.rb, line 3 def check_has_home_directory(user, path_to_home) "pw user show #{escape(user)} | cut -f 9 -d ':' | grep -w -- #{escape(path_to_home)}" end
check_has_login_shell(user, path_to_shell)
click to toggle source
# File lib/specinfra/command/freebsd/v6/user.rb, line 7 def check_has_login_shell(user, path_to_shell) "pw user show #{escape(user)} | cut -f 10 -d ':' | grep -w -- #{escape(path_to_shell)}" end
get_home_directory(user)
click to toggle source
# File lib/specinfra/command/freebsd/v6/user.rb, line 11 def get_home_directory(user) "pw user show #{escape(user)} | cut -f 9 -d ':'" end
get_login_shell(user)
click to toggle source
# File lib/specinfra/command/freebsd/v6/user.rb, line 15 def get_login_shell(user) "pw user show #{escape(user)} | cut -f 10 -d ':'" end