pyinfra: avoid KeyError if user/service doesn't exist yet

pull/13/head
missytake 2023-10-09 08:58:06 +02:00
parent 69047ea6e3
commit 89e4bc2873
1 changed files with 13 additions and 10 deletions

View File

@ -86,13 +86,16 @@ def deploy_teams_bot(unix_user: str, bot_email: str, bot_passwd: str, dbdir: str
)
services = host.get_fact(SystemdStatus, user_mode=True, user_name=unix_user, _su_user=unix_user, _use_su_login=True)
if services['teams-bot.service']:
systemd.service(
name=f"{unix_user}: retart systemd service",
service='teams-bot.service',
running=True,
restarted=True,
user_mode=True,
_su_user=unix_user,
_use_su_login=True,
)
try:
if services['teams-bot.service']:
systemd.service(
name=f"{unix_user}: restart teams-bot systemd service",
service='teams-bot.service',
running=True,
restarted=True,
user_mode=True,
_su_user=unix_user,
_use_su_login=True,
)
except KeyError:
pass