|
+ if trusted.include?(fprint) + p4.run_trust('-f', '-i', fprint) + end + elsif HWSSettings.system.ENABLE_AUTOMATIC_TRUST == true + p4.run_trust('-y', '-f')
gnicol (on auth.rb, line 123) commented
9 years ago
I really don't think passing -f here is reasonable. I'd love to hear your thoughts on it though perhaps I'm missing something. |
Reply ·0 | |
|
|
|
+ if trusted.include?(fprint) + p4.run_trust('-f', '-i', fprint) + end + elsif HWSSettings.system.ENABLE_AUTOMATIC_TRUST == true + p4.run_trust('-y', '-f')
tjuricek (on auth.rb, line 123) commented
9 years ago
First, this is the desire of Alan, primarily. So he might have more of an explanation. As I understand it, the auto setting is really needed only for testing internally. The framework the Helix Sync team uses regenerates trust fingerprints constantly. For production, and Helix Cloud is the primary target here, they will have a single cert shared for all of their instances (and there's one per project). So they just only want that one fingerprint, but they want it trusted automatically on all services. I'm sure other scenarios will pop up. |
Reply ·0 | |
|