Sha256: f92bd6b500cd393bc80911bdecd5afddc9839dc12f0b3416a219c38620409b2b

Contents?: true

Size: 1.55 KB

Versions: 8

Compression:

Stored size: 1.55 KB

Contents

#
# Author:: Davide Cavalca <dcavalca@fb.com>
# Copyright:: Copyright (c) 2016 Facebook
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

Ohai.plugin(:Sessions) do
  provides "sessions/by_session", "sessions/by_user"

  collect_data(:linux) do
    loginctl_path = which("loginctl")
    if loginctl_path
      cmd = "#{loginctl_path} --no-pager --no-legend --no-ask-password " +
        "list-sessions"
      loginctl = shell_out(cmd)

      sessions Mash.new unless sessions
      sessions[:by_session] = Mash.new unless sessions[:by_session]
      sessions[:by_user] = Mash.new unless sessions[:by_user]

      loginctl.stdout.split("\n").each do |line|
        session, uid, user, seat = line.split
        s = {
          "session" => session,
          "uid" => uid,
          "user" => user,
          "seat" => seat,
        }
        sessions[:by_session][session] = s
        if sessions[:by_user][user]
          sessions[:by_user][user] << s
        else
          sessions[:by_user][user] = [s]
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ohai-8.22.1 lib/ohai/plugins/linux/sessions.rb
ohai-8.22.0 lib/ohai/plugins/linux/sessions.rb
ohai-8.21.0 lib/ohai/plugins/linux/sessions.rb
ohai-8.20.0 lib/ohai/plugins/linux/sessions.rb
ohai-8.19.2 lib/ohai/plugins/linux/sessions.rb
ohai-8.19.1 lib/ohai/plugins/linux/sessions.rb
ohai-8.19.0 lib/ohai/plugins/linux/sessions.rb
ohai-8.18.0 lib/ohai/plugins/linux/sessions.rb