Fill in the blanks for the eauth system
(self)
| 49 | self.wheel = salt.wheel.Wheel(self.opts) |
| 50 | |
| 51 | def __eauth(self): |
| 52 | """ |
| 53 | Fill in the blanks for the eauth system |
| 54 | """ |
| 55 | if self.opts["eauth"]: |
| 56 | resolver = salt.auth.Resolver(self.opts) |
| 57 | res = resolver.cli(self.opts["eauth"]) |
| 58 | self.opts.update(res) |
| 59 | |
| 60 | def run(self): |
| 61 | """ |