@@ -767,6 +767,9 @@ def connect(ctx: click.Context, ip_address: str, port: int, user: str, password:
767
767
global SSH , IP_REGEX , CONNECTED_TO
768
768
remoteAuthorizedKeysFile = '~/.ssh/authorized_keys'
769
769
confFile = Path (Path .home (), '.pacli/configs.json' )
770
+ sshDirPath = Path (Path .home (), '.ssh' )
771
+ sshDirPath .mkdir (exist_ok = True )
772
+
770
773
confFile .parent .mkdir (parents = True , exist_ok = True )
771
774
if not confFile .exists ():
772
775
confs = dict ()
@@ -784,7 +787,7 @@ def connect(ctx: click.Context, ip_address: str, port: int, user: str, password:
784
787
data = confs ['servers' ].get (ip_address , dict ()).get ('keyFile' )
785
788
if data :
786
789
user = confs ['servers' ][ip_address ]['user' ]
787
- keyFile = Path (Path . home () , f".ssh/ { confs ['servers' ][ip_address ]['keyFile' ]} " )
790
+ keyFile = Path (sshDirPath , f"{ confs ['servers' ][ip_address ]['keyFile' ]} " )
788
791
789
792
if not keyFile .exists ():
790
793
printError ('Declared server is using a non existing RSA key file, removing entry and asking for password.' )
@@ -837,7 +840,7 @@ def connect(ctx: click.Context, ip_address: str, port: int, user: str, password:
837
840
CONNECTED_TO = ip_address
838
841
if ip_address not in confs ['servers' ]:
839
842
filename = f'id_rsa_{ ip_address } '
840
- keyFile = Path (Path . home (), f'.ssh/ { filename } ' )
843
+ keyFile = Path (sshDirPath , filename )
841
844
if keyFile .exists ():
842
845
keyFile .unlink ()
843
846
keyFile .with_suffix ('.pub' ).unlink (missing_ok = True )
0 commit comments