add logging for set_file_ssh_authorized_keys
This commit is contained in:
parent
307ccf4307
commit
7dbb51da1a
1 changed files with 4 additions and 0 deletions
|
@ -336,6 +336,8 @@ def set_file_ssh_authorized_keys(username, ssh_keys):
|
||||||
stderr=subprocess.STDOUT)
|
stderr=subprocess.STDOUT)
|
||||||
subprocess.check_output([
|
subprocess.check_output([
|
||||||
SUDO_CMD, RM_CMD, filename], stderr=subprocess.STDOUT)
|
SUDO_CMD, RM_CMD, filename], stderr=subprocess.STDOUT)
|
||||||
|
_LOGGER.info(
|
||||||
|
'set %d authorized_keys for user %s', len(ssh_keys), username)
|
||||||
except subprocess.CalledProcessError as cpe:
|
except subprocess.CalledProcessError as cpe:
|
||||||
log_and_raise(
|
log_and_raise(
|
||||||
cpe, 'could not write authorized_keys file for user %s',
|
cpe, 'could not write authorized_keys file for user %s',
|
||||||
|
@ -346,6 +348,8 @@ def set_file_ssh_authorized_keys(username, ssh_keys):
|
||||||
SUDO_CMD, RM_CMD, '-rf',
|
SUDO_CMD, RM_CMD, '-rf',
|
||||||
os.path.dirname(ssh_authorized_keys_file)],
|
os.path.dirname(ssh_authorized_keys_file)],
|
||||||
stderr=subprocess.STDOUT)
|
stderr=subprocess.STDOUT)
|
||||||
|
_LOGGER.info(
|
||||||
|
'deleted authorized_keys of user %s', username)
|
||||||
except subprocess.CalledProcessError as cpe:
|
except subprocess.CalledProcessError as cpe:
|
||||||
log_and_raise(
|
log_and_raise(
|
||||||
cpe, 'could not remove the authorized_keys file of user %s',
|
cpe, 'could not remove the authorized_keys file of user %s',
|
||||||
|
|
Loading…
Reference in a new issue