Andreas,
First and for most: Thank you for guacamole-auth-pam!
I made a slight mod to the code to allow anyone who can login to the machine can login to guacamole.
<user name="*">
<config-ref name="ECE -- slow network RDP" />
<config-ref name="ECE -- slow network SFTP" />
<config-ref name="ECE -- fast network" />
</user>
The code is in UserMapping.java:
if (userNameToConfigNames.containsKey(userName)) {
configNames.addAll(userNameToConfigNames.get(userName));
}
/* Code Added */
if (userNameToConfigNames.containsKey("*")) {
configNames.addAll(userNameToConfigNames.get("*"));
}
This keeps me from having to maintain a list of users. I just make accounts on the machine and they can use guacamole.
Thoughts?
Andreas,
First and for most: Thank you for guacamole-auth-pam!
I made a slight mod to the code to allow anyone who can login to the machine can login to guacamole.
<user name="*"><config-ref name="ECE -- slow network RDP" /><config-ref name="ECE -- slow network SFTP" /><config-ref name="ECE -- fast network" /></user>The code is in UserMapping.java:
This keeps me from having to maintain a list of users. I just make accounts on the machine and they can use guacamole.
Thoughts?