File: group.rb

package info (click to toggle)
ruby-serverspec 2.43.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 984 kB
  • sloc: ruby: 4,847; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Serverspec::Type
  class Group < Base
    def exists?
      @runner.check_group_exists(@name)
    end

    def gid
      @runner.get_group_gid(@name).stdout.to_i
    end

    def has_gid?(gid)
      @runner.check_group_has_gid(@name, gid)
    end

    def is_system_group?
      @runner.check_group_is_system_group(@name)
    end
  end
end