devops_for_the_desperate icon indicating copy to clipboard operation
devops_for_the_desperate copied to clipboard

Chapter 3: [errata] group `bender`

Open storenth opened this issue 11 months ago • 3 comments

Possible errata found on https://github.com/bradleyd/devops_for_the_desperate/blob/93066ab97c4e285a7e1d25591eb397031059093e/ansible/chapter3/two_factor.yml#L12

We created developers under Ensure group 'developers' exists task but use bender now didn't get it, can you explain please?

There is no side effect I think: bender-issue

storenth avatar Mar 14 '24 15:03 storenth

@storenth Thanks for reading the book! What you are showing there is correct. When you run getent for group bender, it returns the group ID 1003. The developers group will have a different ID. In your case it is 1002. In the group file, right after the 1002 group ID for developers, you have a :. Following this is the list of users that are associated with this group. In this case, you can see bender is a member of the developers group. Each group will have a unique ID to that host.

I hope that helps.

Brad

bradleyd avatar Mar 17 '24 17:03 bradleyd

Possible errata found on

https://github.com/bradleyd/devops_for_the_desperate/blob/93066ab97c4e285a7e1d25591eb397031059093e/ansible/chapter3/two_factor.yml#L12

We created developers under Ensure group 'developers' exists task but use bender now didn't get it, can you explain please?

But, why you do not use developers under 12 line of the Copy over Preconfigured GoogleAuthenticator config task? Thanks for assist, I'm glad to hear you.

storenth avatar Mar 18 '24 06:03 storenth

Because I only wanted to show how to setup GA for the bender user.

bradleyd avatar Jun 27 '24 20:06 bradleyd