forked from missytake/team-bot
pyinfra: avoid KeyError if user/service doesn't exist yet
This commit is contained in:
parent
69047ea6e3
commit
89e4bc2873
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue