Browse Source

set pass char set without symbols

Fabian Peter Hammerle 5 years ago
parent
commit
c91f676412
1 changed files with 2 additions and 1 deletions
  1. 2 1
      rc.xsh

+ 2 - 1
rc.xsh

@@ -89,7 +89,8 @@ $TERMCMD = os.path.join(os.path.dirname(__file__), 'ranger-termite-termcmd')
 # https://docs.docker.com/engine/security/trust/content_trust/
 $DOCKER_CONTENT_TRUST = 1
 $PASSWORD_STORE_UMASK = '027'
-$PASSWORD_STORE_CHARACTER_SET = '1-9a-km-zA-HJKLMNPR-Z*+!&#@%.\-_'
+$PASSWORD_STORE_CHARACTER_SET_NO_SYMBOLS = '1-9a-km-zA-HJKLMNPR-Z'
+$PASSWORD_STORE_CHARACTER_SET = $PASSWORD_STORE_CHARACTER_SET_NO_SYMBOLS + '*+!&#@%.\-_'
 
 class DockerImage: