infinoted, syncthing: Fix minor typo in a comment

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
This commit is contained in:
Sunil Mohan Adapa 2020-08-18 19:53:27 -07:00 committed by Joseph Nuthalapati
parent 35a0cdbe3e
commit 2bbcd2d869
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ def subcommand_setup(_):
except KeyError:
subprocess.run(['addgroup', '--system', 'infinoted'], check=True)
# Create infinoted user is needed.
# Create infinoted user if needed.
try:
pwd.getpwnam('infinoted')
except KeyError:

View File

@ -33,7 +33,7 @@ def subcommand_setup(_):
except KeyError:
subprocess.run(['addgroup', '--system', 'syncthing'], check=True)
# Create syncthing user is needed.
# Create syncthing user if needed.
try:
pwd.getpwnam('syncthing')
except KeyError: