1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add support for Debian in apt_repository

This commit is contained in:
Sebastien Bocahu 2012-08-13 19:23:53 +02:00
parent df269c72c1
commit 3e9bcd351d

View file

@ -72,7 +72,7 @@ def main():
cmd = '%s %s' % (add_apt_repository, repo)
if float(platform.dist()[1]) >= 11.10:
if platform.dist()[0] == 'debian' or float(platform.dist()[1]) >= 11.10:
cmd = cmd + ' -y'
rc, out, err = _run(cmd)