Skip to content

Commit 82bc541

Browse files
if the ssh dir does not exist, create it
1 parent 9403c33 commit 82bc541

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

AliceCli/utils/commons.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,9 @@ def connect(ctx: click.Context, ip_address: str, port: int, user: str, password:
767767
global SSH, IP_REGEX, CONNECTED_TO
768768
remoteAuthorizedKeysFile = '~/.ssh/authorized_keys'
769769
confFile = Path(Path.home(), '.pacli/configs.json')
770+
sshDirPath = Path(Path.home(), '.ssh')
771+
sshDirPath.mkdir(exist_ok=True)
772+
770773
confFile.parent.mkdir(parents=True, exist_ok=True)
771774
if not confFile.exists():
772775
confs = dict()
@@ -784,7 +787,7 @@ def connect(ctx: click.Context, ip_address: str, port: int, user: str, password:
784787
data = confs['servers'].get(ip_address, dict()).get('keyFile')
785788
if data:
786789
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']}")
788791

789792
if not keyFile.exists():
790793
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:
837840
CONNECTED_TO = ip_address
838841
if ip_address not in confs['servers']:
839842
filename = f'id_rsa_{ip_address}'
840-
keyFile = Path(Path.home(), f'.ssh/{filename}')
843+
keyFile = Path(sshDirPath, filename)
841844
if keyFile.exists():
842845
keyFile.unlink()
843846
keyFile.with_suffix('.pub').unlink(missing_ok=True)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name='projectalice-cli',
28-
version='1.3.22',
28+
version='1.3.23',
2929
long_description=Path('README.md').read_text(encoding='utf8'),
3030
long_description_content_type='text/markdown',
3131
python_requires='>=3.8',

0 commit comments

Comments
 (0)