Class: Specinfra::Command::Freebsd::V6::User
Class Method Summary
collapse
Methods inherited from Base::User
add, create, get_encrypted_password, get_maximum_days_between_password_change, get_minimum_days_between_password_change, update_encrypted_password, update_gid, update_home_directory, update_login_shell, update_uid
Methods inherited from Base::User
add, check_belongs_to_group, check_belongs_to_primary_group, check_exists, check_has_authorized_key, check_has_uid, check_is_system_user, get_encrypted_password, get_gid, get_maximum_days_between_password_change, get_minimum_days_between_password_change, get_uid, update_encrypted_password, update_gid, update_home_directory, update_login_shell, update_uid
Methods inherited from Base
create, escape
Class Method Details
.check_has_home_directory(user, path_to_home) ⇒ Object
3
4
5
|
# 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) ⇒ Object
7
8
9
|
# 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) ⇒ Object
11
12
13
|
# 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) ⇒ Object
15
16
17
|
# 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
|