We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da490fc commit ac092f4Copy full SHA for ac092f4
1 file changed
irods/client_init.py
@@ -4,13 +4,13 @@
4
import getpass
5
import sys
6
7
-def write_credentials_with_native_password( password ):
+def write_native_credentials_to_secrets_file( password ):
8
s = h.make_session()
9
assert(not s.auth_file)
10
open(s.pool.account.derived_auth_file,'w').write(obf.encode(password))
11
return True
12
13
-def write_credentials_with_pam_password( password ):
+def write_pam_credentials_to_secrets_file( password ):
14
15
s.pool.account.password = password
16
with cfg.loadlines( [dict(setting='legacy_auth.pam.password_for_auto_renew',value=None),
0 commit comments