Reputation: 539
In Rundeck in the path /rundeck/etc we have the file: framework.properties
which has the parameter should have only plain text framework.server.password
The issue here is to encrypt it like we can do it for the following file in the path /rundeck/server/config:
realm.properties
Do we have a workaround to mask the plaintext password in framework.properties?
Upvotes: 1
Views: 491
Reputation: 378
the password in framework.properties is only used by the commandline tools to communicate with the server. As an alternative you can remove the password from that file, and specify environment variables as shown here http://rundeck.org/docs/man1/cli-tool-authentication.html#environment-variables
Upvotes: 2