mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Fix variable name
This commit is contained in:
parent
c87282d5aa
commit
63a47f8b6b
1 changed files with 1 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ def get_systemd_os_like(filepath="/etc/os-release"):
|
|||
:rtype: `list` of `str`
|
||||
"""
|
||||
|
||||
return _get_systemd_os_release_var("LIKE", filepath).split(" ")
|
||||
return _get_systemd_os_release_var("ID_LIKE", filepath).split(" ")
|
||||
|
||||
|
||||
def _get_systemd_os_release_var(varname, filepath="/etc/os-release"):
|
||||
|
|
|
|||
Loading…
Reference in a new issue