Alon Bar-Lev has uploaded a new change for review. Change subject: system: info: add user id information ......................................................................
system: info: add user id information Change-Id: I6b00e6a2310d58aa8efbc825637d73506afe315e Signed-off-by: Alon Bar-Lev <alo...@redhat.com> --- M src/plugins/otopi/system/info.py 1 file changed, 8 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/89/15689/1 diff --git a/src/plugins/otopi/system/info.py b/src/plugins/otopi/system/info.py index 09bd301..37414bd 100644 --- a/src/plugins/otopi/system/info.py +++ b/src/plugins/otopi/system/info.py @@ -21,6 +21,7 @@ """System information plugin.""" +import os import sys import platform import socket @@ -50,6 +51,13 @@ self.logger.debug('platform %s', sys.platform) self.logger.debug('distribution %s', platform.linux_distribution()) self.logger.debug("host '%s'", socket.gethostname()) + self.logger.debug( + 'uid %s euid %s gid %s egid %s', + os.getuid(), + os.geteuid(), + os.getgid(), + os.getegid(), + ) self.logger.debug('SYSTEM INFORMATION - END') -- To view, visit http://gerrit.ovirt.org/15689 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I6b00e6a2310d58aa8efbc825637d73506afe315e Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <alo...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches