Revision 3695a4e0 lib/runtime.py

b/lib/runtime.py
75 75
  @ivar masterd_gid: The resolved gid of the masterd group
76 76
  @ivar confd_uid: The resolved uid of the confd user
77 77
  @ivar confd_gid: The resolved gid of the confd group
78
  @ivar queryd_uid: The resolved uid of the queryd user
79
  @ivar queyrd_gid: The resolved gid of the queyrd group
78
  @ivar luxid_uid: The resolved uid of the luxid user
79
  @ivar luxid_gid: The resolved gid of the luxid group
80 80
  @ivar rapi_uid: The resolved uid of the rapi user
81 81
  @ivar rapi_gid: The resolved gid of the rapi group
82 82
  @ivar noded_uid: The resolved uid of the noded user
......
95 95
    self.confd_uid = GetUid(constants.CONFD_USER, _getpwnam)
96 96
    self.confd_gid = GetGid(constants.CONFD_GROUP, _getgrnam)
97 97

  
98
    self.queryd_uid = GetUid(constants.QUERYD_USER, _getpwnam)
99
    self.queryd_gid = GetGid(constants.QUERYD_GROUP, _getgrnam)
98
    self.luxid_uid = GetUid(constants.LUXID_USER, _getpwnam)
99
    self.luxid_gid = GetGid(constants.LUXID_GROUP, _getgrnam)
100 100

  
101 101
    self.rapi_uid = GetUid(constants.RAPI_USER, _getpwnam)
102 102
    self.rapi_gid = GetGid(constants.RAPI_GROUP, _getgrnam)
......
111 111
    self._uid2user = {
112 112
      self.masterd_uid: constants.MASTERD_USER,
113 113
      self.confd_uid: constants.CONFD_USER,
114
      self.queryd_uid: constants.QUERYD_USER,
114
      self.luxid_uid: constants.LUXID_USER,
115 115
      self.rapi_uid: constants.RAPI_USER,
116 116
      self.noded_uid: constants.NODED_USER,
117 117
      }
......
119 119
    self._gid2group = {
120 120
      self.masterd_gid: constants.MASTERD_GROUP,
121 121
      self.confd_gid: constants.CONFD_GROUP,
122
      self.queryd_gid: constants.QUERYD_GROUP,
122
      self.luxid_gid: constants.LUXID_GROUP,
123 123
      self.rapi_gid: constants.RAPI_GROUP,
124 124
      self.noded_gid: constants.NODED_GROUP,
125 125
      self.daemons_gid: constants.DAEMONS_GROUP,

Also available in: Unified diff