Class: User
- Inherits:
-
Object
- Object
- User
- Defined in:
- lib/teuton/case/builtin/user.rb
Instance Method Summary collapse
- #exists? ⇒ Boolean
-
#initialize(teuton_host, param) ⇒ User
constructor
A new instance of User.
- #is_member_of?(groupname) ⇒ Boolean
Constructor Details
#initialize(teuton_host, param) ⇒ User
2 3 4 5 6 7 |
# File 'lib/teuton/case/builtin/user.rb', line 2 def initialize(teuton_host, param) @teuton_host = teuton_host @parent = teuton_host.parent @host = teuton_host.host @param = param end |
Instance Method Details
#exists? ⇒ Boolean
9 10 11 12 13 |
# File 'lib/teuton/case/builtin/user.rb', line 9 def exists? @parent.target("User #{@param} exists?") @parent.run "id #{@param}", on: @host @parent.expect_one ["uid=", @param] end |
#is_member_of?(groupname) ⇒ Boolean
15 16 17 18 19 |
# File 'lib/teuton/case/builtin/user.rb', line 15 def is_member_of?(groupname) @parent.target("User #{@param} is member of #{groupname}?") @parent.run "id #{@param}", on: @host @parent.expect_one [@param, groupname] end |