I have a pull request which I think will address this issue: https://github.com/linux-system-roles/template/pull/17
This makes it so that running commands from `tox` will always use `python` which is the python command inside the tox venv.
You might be able to try it out, by pulling down the template repo and pr, or just grabbing the raw files from the PR and replacing those files in the network repo.
On 3/27/20 11:39 AM, Harsh Jain wrote:
Hey Rich , sorry I wasn't able to reply earlier .As you said , removing the py 26 line did fix that error but the I'm still facing the other issue . As you pointed out tox is creating an python environment but it then does not use it when running for some reason .I think the problem occurs here
ENVPYTHON=$(readlink -f $1) https://github.com/linux-system-roles/network/blob/4af8f23955322cebc06f5c3a8...
in the shell scripts in the .travis folder for some reason this does not get the correct location/address this error , __main__.py: error: unrecognized arguments: --cov=/home/x/Packages/network/library --cov=/home/x/Packages/network/module_utils --cov-report=html:htmlcov-py37 --cov-report=term inifile: /home/x/Packages/network/tox.ini rootdir: /home/x/Packages/network is most probably being raised here
if __name__ == "__main__": # if run as a script or by 'python -m pytest' # we trigger the below "else" condition by the following import import pytest
raise SystemExit(pytest.main()) this is in the pytest.py in the python env this is the error ERROR: usage: __main__.py [options] [file_or_dir] [file_or_dir] [...] my guess is that since wrong address is being read it is also being passed into pytest as an argument
Maybe changing the path to envpython in the scripts to absolute value will work ,but I don't know how exactly to do that for the different versions I tried to set it to absoulte path for one version and I got a python shell
I did tox -e py36
and got
py36 create: /home/x/Packages/network/.tox/env-3.6 py36 installdeps: pytest-cov, pytest>=3.5.1 py36 installed: attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.6.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.9,zipp==3.1.0 py36 run-test-pre: PYTHONHASHSEED='1186771946' py36 run-test: commands[0] | bash /home/x/Packages/network/.travis/runpytest.sh /home/x/Packages/network/.tox/env-3.6/bin/python --durations=5 --cov=/home/x/Packages/network/library --cov=/home/x/Packages/network/module_utils --cov-report=html:htmlcov-py36 --cov-report=term unit Python 3.6.10 (default, Dec 20 2019, 00:00:00) [GCC 9.2.1 20190827 (Red Hat 9.2.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information.
but when I normally do this I get
py36 installed: attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.6.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.9,zipp==3.1.0 py36 run-test-pre: PYTHONHASHSEED='2786059989' py36 run-test: commands[0] | bash /home/x/Packages/network/.travis/runpytest.sh /home/x/Packages/network/.tox/env-3.6/bin/python --durations=5 --cov=/home/x/Packages/network/library --cov=/home/x/Packages/network/module_utils --cov-report=html:htmlcov-py36 --cov-report=term unit
- /usr/bin/python3.6 -m pytest --durations=5
--cov=/home/x/Packages/network/library --cov=/home/x/Packages/network/module_utils --cov-report=html:htmlcov-py36 --cov-report=term unit /usr/bin/python3.6: No module named pytest ERROR: InvocationError for command /usr/bin/bash /home/x/Packages/network/.travis/runpytest.sh /home/x/Packages/network/.tox/env-3.6/bin/python --durations=5 --cov=/home/x/Packages/network/library --cov=/home/x/Packages/network/module_utils --cov-report=html:htmlcov-py36 --cov-report=term unit (exited with code 1) ______________________________________________________________________ summary _______________________________________________________________________ ERROR: py36: commands failed
Hope this helps , Thanks, Harsh
On Mon, Mar 23, 2020 at 5:55 PM Rich Megginson <rmeggins@redhat.com mailto:rmeggins@redhat.com> wrote:
On 3/21/20 11:52 PM, Harsh Jain wrote: > I tried running tox on my manjaro system again and I got this : What version of tox is this? Looks like a problem with tox - see below: > since it doesn't find a 3.6 interpreter, it skips the 3.6 based tests > the other error is still there ,so I think there might be two different > errors happening or maybe they are connected somehow . > and since the commands succeed with py2.7 ,the problem is not occurring > there,is there something different happening with py 3+ ? > I had sent an email to the tox devel group but haven't heard back,I'll > send one again . > > black create: /home/x/Dev-work/net/network/.tox/env-3.6 > SKIPPED: InterpreterNotFound: python3.6 > pylint create: /home/x/Dev-work/net/network/.tox/env-2.7 > pylint installdeps: colorama, pylint>=1.8.4, ansible, > -rpylint_extra_requirements.txt > pylint installed: DEPRECATION: Python 2.7 reached the end of its life on > January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer > maintained. A future version of pip will drop support for Python 2.7. > More details about Python 2 support in pip, can be found at > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,ansible==2.9.6,astroid==1.6.6,backports.functools-lru-cache==1.6.1,cffi==1.14.0,colorama==0.4.3,configparser==4.0.2,cryptography==2.8,enum34==1.1.10,futures==3.3.0,ipaddress==1.0.23,isort==4.3.21,Jinja2==2.11.1,lazy-object-proxy==1.4.3,MarkupSafe==1.1.1,mccabe==0.6.1,pycparser==2.20,pylint==1.9.5,PyYAML==5.3.1,singledispatch==3.4.0.3,six==1.14.0,wrapt==1.12.1 > pylint run-test-pre: PYTHONHASHSEED='3790842442' > pylint run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runpylint.sh > /home/x/Dev-work/net/network/.tox/env-2.7/bin/python --errors-only > + /home/x/Dev-work/net/network/.tox/env-2.7/bin/python > /home/x/Dev-work/net/network/.travis/custom_pylint.py --errors-only > /home/x/Dev-work/net/network/.travis/custom_pylint.py: files to be checked: > /home/x/Dev-work/net/network/library/network_connections.py > > /home/x/Dev-work/net/network/module_utils/network_lsr/argument_validator.py > /home/x/Dev-work/net/network/module_utils/network_lsr/nm_provider.py > /home/x/Dev-work/net/network/module_utils/network_lsr/__init__.py > /home/x/Dev-work/net/network/module_utils/network_lsr/utils.py > /home/x/Dev-work/net/network/tests/unit/test_network_connections.py > /home/x/Dev-work/net/network/tests/unit/test_nm_provider.py > /home/x/Dev-work/net/network/tests/ensure_non_running_provider.py > Using config file /home/x/Dev-work/net/network/pylintrc > flake8 recreate: /home/x/Dev-work/net/network/.tox/env-2.7 > flake8 installdeps: flake8>=3.5 > flake8 installed: DEPRECATION: Python 2.7 reached the end of its life on > January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer > maintained. A future version of pip will drop support for Python 2.7. > More details about Python 2 support in pip, can be found at > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,configparser==4.0.2,entrypoints==0.3,enum34==1.1.10,flake8==3.7.9,functools32==3.2.3.post2,mccabe==0.6.1,pycodestyle==2.5.0,pyflakes==2.1.1,typing==3.7.4.1 > flake8 run-test-pre: PYTHONHASHSEED='3790842442' > flake8 run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runflake8.sh > /home/x/Dev-work/net/network/.tox/env-2.7/bin/python --statistics . > + /home/x/Dev-work/net/network/.tox/env-2.7/bin/python -m flake8 > --statistics . > py26 create: /home/x/Dev-work/net/network/.tox/env-2.6 > SKIPPED: InterpreterNotFound: python2.6 > py27 recreate: /home/x/Dev-work/net/network/.tox/env-2.7 > py27 installdeps: pytest, pytest>=3.5.1, mock > ERROR: invocation failed (exit code 1), logfile: > /home/x/Dev-work/net/network/.tox/env-2.7/log/py27-1.log > ============================================================= log start > ============================================================== > DEPRECATION: Python 2.7 reached the end of its life on January 1st, > 2020. Please upgrade your Python as Python 2.7 is no longer maintained. > A future version of pip will drop support for Python 2.7. More details > about Python 2 support in pip, can be found at > https://pip.pypa.io/en/latest/development/release-process/#python-2-support > ERROR: Double requirement given: pytest>=3.5.1 (already in pytest, > name='pytest') This looks like a problem with tox. The requirements look like this: [testenv] basepython = python3 # List common dependencies for Python interpreters here: deps = py{26,27,36,37,38}: pytest-cov py{27,36,37,38}: pytest>=3.5.1 py{26,27}: mock py26: pytest This means, for the py27 environment (which is the one listed above), it should be using only these lines, because they match py27: deps = py{26,27,36,37,38}: pytest-cov py{27,36,37,38}: pytest>=3.5.1 py{26,27}: mock But for some reason, it is also using py26: pytest, which is an error. Perhaps it is using the wrong version of tox, or perhaps this is a bug in tox? At any rate, you might work around the problem by removing the py26: pytest line from deps in [testenv] > > ============================================================== log end > =============================================================== > ERROR: could not install deps [pytest, pytest>=3.5.1, mock]; v = > InvocationError("/home/x/Dev-work/net/network/.tox/env-2.7/bin/python -m > pip install pytest 'pytest>=3.5.1' mock", 1) > py36 create: /home/x/Dev-work/net/network/.tox/env-3.6 > SKIPPED: InterpreterNotFound: python3.6 > py37 create: /home/x/Dev-work/net/network/.tox/env-3.6 > SKIPPED: InterpreterNotFound: python3.6 > py38 create: /home/x/Dev-work/net/network/.tox/env-3.8 > py38 installdeps: pytest, pytest>=3.5.1 > ERROR: invocation failed (exit code 1), logfile: > /home/x/Dev-work/net/network/.tox/env-3.8/log/py38-1.log > ============================================================= log start > ============================================================== > ERROR: Double requirement given: pytest>=3.5.1 (already in pytest, > name='pytest') > > ============================================================== log end > =============================================================== > ERROR: could not install deps [pytest, pytest>=3.5.1]; v = > InvocationError("/home/x/Dev-work/net/network/.tox/env-3.8/bin/python -m > pip install pytest 'pytest>=3.5.1'", 1) > custom installed: PyYAML==5.3.1 > custom run-test-pre: PYTHONHASHSEED='3790842442' > custom run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/custom.sh > /home/x/Dev-work/net/network/.tox/env-custom/bin/python /usr/bin/python3 > + cd /home/x/Dev-work/net/network/tests > + /opt/miniconda3/bin/python3.7 ./ensure_non_running_provider.py > ______________________________________________________________ summary > _______________________________________________________________ > SKIPPED: black: InterpreterNotFound: python3.6 > pylint: commands succeeded > flake8: commands succeeded > SKIPPED: py26: InterpreterNotFound: python2.6 > ERROR: py27: could not install deps [pytest, pytest>=3.5.1, mock]; v = > InvocationError("/home/x/Dev-work/net/network/.tox/env-2.7/bin/python -m > pip install pytest 'pytest>=3.5.1' mock", 1) > SKIPPED: py36: InterpreterNotFound: python3.6 > SKIPPED: py37: InterpreterNotFound: python3.6 > ERROR: py38: could not install deps [pytest, pytest>=3.5.1]; v = > InvocationError("/home/x/Dev-work/net/network/.tox/env-3.8/bin/python -m > pip install pytest 'pytest>=3.5.1'", 1) > custom: commands succeeded > (base) [x@x-pc network]$ tox > black create: /home/x/Dev-work/net/network/.tox/env-3.6 > SKIPPED: InterpreterNotFound: python3.6 > pylint create: /home/x/Dev-work/net/network/.tox/env-2.7 > pylint installdeps: colorama, pylint>=1.8.4, ansible, > -rpylint_extra_requirements.txt > pylint installed: DEPRECATION: Python 2.7 reached the end of its life on > January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer > maintained. A future version of pip will drop support for Python 2.7. > More details about Python 2 support in pip, can be found at > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,ansible==2.9.6,astroid==1.6.6,backports.functools-lru-cache==1.6.1,cffi==1.14.0,colorama==0.4.3,configparser==4.0.2,cryptography==2.8,enum34==1.1.10,futures==3.3.0,ipaddress==1.0.23,isort==4.3.21,Jinja2==2.11.1,lazy-object-proxy==1.4.3,MarkupSafe==1.1.1,mccabe==0.6.1,pycparser==2.20,pylint==1.9.5,PyYAML==5.3.1,singledispatch==3.4.0.3,six==1.14.0,wrapt==1.12.1 > pylint run-test-pre: PYTHONHASHSEED='2492393618' > pylint run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runpylint.sh > /home/x/Dev-work/net/network/.tox/env-2.7/bin/python --errors-only > + /home/x/Dev-work/net/network/.tox/env-2.7/bin/python > /home/x/Dev-work/net/network/.travis/custom_pylint.py --errors-only > /home/x/Dev-work/net/network/.travis/custom_pylint.py: files to be checked: > /home/x/Dev-work/net/network/library/network_connections.py > > /home/x/Dev-work/net/network/module_utils/network_lsr/argument_validator.py > /home/x/Dev-work/net/network/module_utils/network_lsr/nm_provider.py > /home/x/Dev-work/net/network/module_utils/network_lsr/__init__.py > /home/x/Dev-work/net/network/module_utils/network_lsr/utils.py > /home/x/Dev-work/net/network/tests/unit/test_network_connections.py > /home/x/Dev-work/net/network/tests/unit/test_nm_provider.py > /home/x/Dev-work/net/network/tests/ensure_non_running_provider.py > Using config file /home/x/Dev-work/net/network/pylintrc > flake8 recreate: /home/x/Dev-work/net/network/.tox/env-2.7 > flake8 installdeps: flake8>=3.5 > flake8 installed: DEPRECATION: Python 2.7 reached the end of its life on > January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer > maintained. A future version of pip will drop support for Python 2.7. > More details about Python 2 support in pip, can be found at > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,configparser==4.0.2,entrypoints==0.3,enum34==1.1.10,flake8==3.7.9,functools32==3.2.3.post2,mccabe==0.6.1,pycodestyle==2.5.0,pyflakes==2.1.1,typing==3.7.4.1 > flake8 run-test-pre: PYTHONHASHSEED='2492393618' > flake8 run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runflake8.sh > /home/x/Dev-work/net/network/.tox/env-2.7/bin/python --statistics . > + /home/x/Dev-work/net/network/.tox/env-2.7/bin/python -m flake8 > --statistics . > py26 create: /home/x/Dev-work/net/network/.tox/env-2.6 > SKIPPED: InterpreterNotFound: python2.6 > py27 recreate: /home/x/Dev-work/net/network/.tox/env-2.7 > py27 installdeps: pytest-cov, pytest>=3.5.1, mock > py27 installed: DEPRECATION: Python 2.7 reached the end of its life on > January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer > maintained. A future version of pip will drop support for Python 2.7. > More details about Python 2 support in pip, can be found at > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,atomicwrites==1.3.0,attrs==19.3.0,configparser==4.0.2,contextlib2==0.6.0.post1,coverage==5.0.4,funcsigs==1.0.2,importlib-metadata==1.5.0,mock==3.0.5,more-itertools==5.0.0,packaging==20.3,pathlib2==2.3.5,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==4.6.9,pytest-cov==2.8.1,scandir==1.10.0,six==1.14.0,wcwidth==0.1.8,zipp==1.2.0 > py27 run-test-pre: PYTHONHASHSEED='2492393618' > py27 run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runpytest.sh > /home/x/Dev-work/net/network/.tox/env-2.7/bin/python --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py27 --cov-report=term unit > + /home/x/Dev-work/net/network/.tox/env-2.7/bin/python -m pytest > --durations=5 --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py27 --cov-report=term unit > ======================================================== test session > starts ========================================================= > platform linux2 -- Python 2.7.17, pytest-4.6.9, py-1.8.1, pluggy-0.13.1 > cachedir: .tox/env-2.7/.pytest_cache > rootdir: /home/x/Dev-work/net/network, inifile: tox.ini > plugins: cov-2.8.1 > collected 63 items > > unit/test_network_connections.py > ..........................................................ss.. > [ 98%] > unit/test_nm_provider.py . > [100%] > > ---------- coverage: platform linux2, python 2.7.17-final-0 ---------- > Name > Stmts Miss Cover > ------------------------------------------------------------------------------------------------- > /home/x/Dev-work/net/network/library/network_connections.py > 1397 1122 20% > /home/x/Dev-work/net/network/module_utils/network_lsr/__init__.py > 2 0 100% > /home/x/Dev-work/net/network/module_utils/network_lsr/argument_validator.py > 506 89 82% > /home/x/Dev-work/net/network/module_utils/network_lsr/nm_provider.py > 7 0 100% > /home/x/Dev-work/net/network/module_utils/network_lsr/utils.py > 229 106 54% > ------------------------------------------------------------------------------------------------- > TOTAL > 2141 1317 38% > Coverage HTML written to dir htmlcov-py27 > > > ====================================================== slowest 5 test > durations ====================================================== > 0.04s call > tests/unit/test_network_connections.py::TestUtils::test_check_output > 0.03s call > tests/unit/test_network_connections.py::TestSysUtils::test_link_read_permaddress > > (0.00 durations hidden. Use -vv to show these durations.) > ====================================================== short test > summary info ======================================================= > SKIPPED [1] tests/unit/test_network_connections.py:2215: no support for > NM (libnm via pygobject) > SKIPPED [1] tests/unit/test_network_connections.py:2201: no support for > NM (libnm via pygobject) > ================================================ 61 passed, 2 skipped in > 0.97 seconds ================================================ > py36 create: /home/x/Dev-work/net/network/.tox/env-3.6 > SKIPPED: InterpreterNotFound: python3.6 > py37 create: /home/x/Dev-work/net/network/.tox/env-3.7 > py37 installdeps: pytest-cov, pytest>=3.5.1 > py37 installed: > attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.5.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8,zipp==3.1.0 > py37 run-test-pre: PYTHONHASHSEED='2492393618' > py37 run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runpytest.sh > /home/x/Dev-work/net/network/.tox/env-3.7/bin/python --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py37 --cov-report=term unit > + /opt/miniconda3/bin/python3.7 -m pytest --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py37 --cov-report=term unit > ERROR: usage: __main__.py [options] [file_or_dir] [file_or_dir] [...] > __main__.py: error: unrecognized arguments: > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py37 --cov-report=term > inifile: /home/x/Dev-work/net/network/tox.ini > rootdir: /home/x/Dev-work/net/network > > ERROR: InvocationError for command /usr/bin/bash > /home/x/Dev-work/net/network/.travis/runpytest.sh > /home/x/Dev-work/net/network/.tox/env-3.7/bin/python --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py37 --cov-report=term unit (exited with code 4) > py38 create: /home/x/Dev-work/net/network/.tox/env-3.8 > py38 installdeps: pytest-cov, pytest>=3.5.1 > py38 installed: > attrs==19.3.0,coverage==5.0.4,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8 > py38 run-test-pre: PYTHONHASHSEED='2492393618' > py38 run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/runpytest.sh > /home/x/Dev-work/net/network/.tox/env-3.8/bin/python --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py38 --cov-report=term unit > + /usr/bin/python3.8 -m pytest --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py38 --cov-report=term unit > /usr/bin/python3.8: No module named pytest > ERROR: InvocationError for command /usr/bin/bash > /home/x/Dev-work/net/network/.travis/runpytest.sh > /home/x/Dev-work/net/network/.tox/env-3.8/bin/python --durations=5 > --cov=/home/x/Dev-work/net/network/library > --cov=/home/x/Dev-work/net/network/module_utils > --cov-report=html:htmlcov-py38 --cov-report=term unit (exited with code 1) > custom installed: PyYAML==5.3.1 > custom run-test-pre: PYTHONHASHSEED='2492393618' > custom run-test: commands[0] | bash > /home/x/Dev-work/net/network/.travis/custom.sh > /home/x/Dev-work/net/network/.tox/env-custom/bin/python /usr/bin/python3 > + cd /home/x/Dev-work/net/network/tests > + /opt/miniconda3/bin/python3.7 ./ensure_non_running_provider.py > ______________________________________________________________ summary > _______________________________________________________________ > SKIPPED: black: InterpreterNotFound: python3.6 > pylint: commands succeeded > flake8: commands succeeded > SKIPPED: py26: InterpreterNotFound: python2.6 > py27: commands succeeded > SKIPPED: py36: InterpreterNotFound: python3.6 > ERROR: py37: commands failed > ERROR: py38: commands failed > custom: commands succeeded > Thanks, > Harsh > > On Fri, Mar 20, 2020 at 12:11 AM Rich Megginson <rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> wrote: > > On 3/19/20 12:09 PM, Harsh Jain wrote: > > I'm still getting the same error message,what should I do? > > I don't know. I am currently out of ideas. You are running into some > sort of strange situation I have never encountered. Perhaps try one of > the public python/tox forums or email lists. None of the Red Hatters > working on system roles have run into this. > > > i tried to remove virtualenv which removed tox and then installed > tox > > via pip and running tox showed /usr/bin/tox: No such file or > directory > > which I thought was weird since that did not happen the first > time I > > installed tox with pip , is there a difference between installing > with > > pip and from the rpm except for the versions? > > Not sure. It should work. > > > > > Thanks, > > Harsh > > > > On Thu, Mar 19, 2020 at 7:26 PM Rich Megginson > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> wrote: > > > > Looks like it is using some sort of cached information from > > /home/x/.local/share/virtualenv/py_info - try this > > > > rm -rf /home/x/.local/share/virtualenv/py_info > > > > Then try running tox again > > > > On 3/19/20 6:44 AM, Harsh Jain wrote: > > > here is the virtualenv version > > > python3-virtualenv-16.6.2-1.fc31.noarch > > > > > > i do not have a . virtualenv directory > > > > > > this is what i get after running > > > python3 -m virtualenv -vvvvv --no-download --python > > /usr/bin/python3.6 > > > > > > 339 setup logging to NOTSET [DEBUG report:43] > > > 586 find interpreter for spec > PythonSpec(path=/usr/bin/python3.6) > > [INFO > > > builtin:44] > > > 595 Attempting to acquire lock 139727221086416 on > > > > > > /home/x/.local/share/virtualenv/py_info/20.0.10/30295c5bec572e859485b1ffa5e89b8b3e2022ef6e3e739c1ac40f143a557caf.lock > > > > > [DEBUG filelock:270] > > > 596 Lock 139727221086416 acquired on > > > > > > /home/x/.local/share/virtualenv/py_info/20.0.10/30295c5bec572e859485b1ffa5e89b8b3e2022ef6e3e739c1ac40f143a557caf.lock > > > > > [INFO filelock:274] > > > 597 get PythonInfo from > > > > > > /home/x/.local/share/virtualenv/py_info/20.0.10/30295c5bec572e859485b1ffa5e89b8b3e2022ef6e3e739c1ac40f143a557caf.json > > > > > for /usr/bin/python3.6 [DEBUG cached_py_info:76] > > > 599 Attempting to release lock 139727221086416 on > > > > > > /home/x/.local/share/virtualenv/py_info/20.0.10/30295c5bec572e859485b1ffa5e89b8b3e2022ef6e3e739c1ac40f143a557caf.lock > > > > > [DEBUG filelock:315] > > > 600 Lock 139727221086416 released on > > > > > > /home/x/.local/share/virtualenv/py_info/20.0.10/30295c5bec572e859485b1ffa5e89b8b3e2022ef6e3e739c1ac40f143a557caf.lock > > > > > [INFO filelock:318] > > > 600 proposed PythonInfo(spec=CPython3.6.10.final.0-64, > > > exe=/usr/bin/python3.6, platform=linux, version='3.6.10 > (default, > > Dec 20 > > > 2019, 00:00:00) \n[GCC 9.2.1 20190827 (Red Hat 9.2.1-1)]', > > > encoding_fs_io=utf-8-UTF-8) [INFO builtin:50] > > > 600 accepted PythonInfo(spec=CPython3.6.10.final.0-64, > > > exe=/usr/bin/python3.6, platform=linux, version='3.6.10 > (default, > > Dec 20 > > > 2019, 00:00:00) \n[GCC 9.2.1 20190827 (Red Hat 9.2.1-1)]', > > > encoding_fs_io=utf-8-UTF-8) [DEBUG builtin:52] > > > 618 filesystem is case-sensitive [DEBUG info:28] > > > usage: virtualenv [--version] [--with-traceback] [-v | -q] > > [--app-data > > > APP_DATA] [--clear-app-data] [--discovery {builtin}] [-p py] > > [--creator > > > {builtin,cpython3-posix,venv}] [--seeder {app-data,pip}] > [--no-seed] > > > [--activators comma_sep_list] [--clear] > > > [--system-site-packages] [--symlinks | --copies] [--download | > > > --no-download] [--extra-search-dir d [d ...]] [--pip version] > > > [--setuptools version] [--wheel version] [--no-pip] > > > [--no-setuptools] [--no-wheel] > > [--symlink-app-data] > > > [--prompt prompt] [-h] > > > dest > > > virtualenv: error: the following arguments are required: dest > > > > > > Hope this helps , > > > Harsh > > > > > > > > > On Wed, Mar 18, 2020 at 10:33 PM Rich Megginson > > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> wrote: > > > > > > On 3/18/20 9:40 AM, Harsh Jain wrote: > > > > here you go > > > > using tox.ini: /home/x/Packages/network/tox.ini > (pid 3240) > > > > using tox-3.13.2 from > > > /usr/lib/python3.7/site-packages/tox/__init__.py > > > > (pid 3240) > > > > skipping sdist step > > > > black start: getenv > /home/x/Packages/network/.tox/env-3.6 > > > > black cannot reuse: no previous config > > > > /home/x/Packages/network/.tox/env-3.6/.tox-config1 > > > > black create: /home/x/Packages/network/.tox/env-3.6 > > > > python3.6 (/usr/bin/python3.6) is {'executable': > > > '/usr/bin/python3.6', > > > > 'name': 'python', 'version_info': [3, 6, 10, > 'final', 0], > > 'version': > > > > '3.6.10 (default, Dec 20 2019, 00:00:00) \n[GCC > 9.2.1 20190827 > > > (Red Hat > > > > 9.2.1-1)]', 'is_64': True, 'sysplatform': 'linux'} > > > > black uses /usr/bin/python3.6 > > > > setting > > > > > > > > > > PATH=/home/x/Packages/network/.tox/env-3.6/bin:/usr/bin:/home/x/.local/bin:/home/x/bin:/usr/condabin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin > > > > [3260] /home/x/Packages/network/.tox$ > /usr/bin/python3 -m > > virtualenv > > > > --no-download --python /usr/bin/python3.6 env-3.6 > > > > created virtual environment > CPython3.6.10.final.0-64 in 2567ms > > > > creator > > CPython3Posix(dest=/home/x/Packages/network/.tox/env-3.6, > > > > clear=False, global=False) > > > > seeder FromAppData(download=False, pip=latest, > > setuptools=latest, > > > > wheel=latest, via=copy, > > > > > app_data_dir=/home/x/.local/share/virtualenv/seed-app-data/v1) > > > > activators > > > > > > > > > > BashActivator,CShellActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator > > > > > > I don't see this stuff at all. It appears that virtualenv > > behaves > > > differently on your system. What version of virtualenv do > > you have? > > > rpm -q python3-virtualenv > > > > > > Do you have a ~/.virtualenv directory? If so, can you > send > > it to me? > > > Do you have any config files or env variables or any > of the > > > customizations mentioned at > > > > https://virtualenv.pypa.io/en/16.7.9/reference.html#configuration ? > > > > > > Also try this: > > > > > > cd /var/tmp > > > python3 -m virtualenv -vvvvv --no-download --python > > /usr/bin/python3.6 > > > env-3.6 > > > > > > > black installdeps: black > > > > setting > > > > > > > > > > PATH=/home/x/Packages/network/.tox/env-3.6/bin:/usr/bin:/home/x/.local/bin:/home/x/bin:/usr/condabin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin > > > > [3267] /home/x/Packages/network$ > > > > /home/x/Packages/network/.tox/env-3.6/bin/python -m pip > > install black > > > > Collecting black > > > > Using cached black-19.10b0-py36-none-any.whl (97 kB) > > > > Collecting appdirs > > > > Using cached appdirs-1.4.3-py2.py3-none-any.whl > (12 kB) > > > > Collecting click>=6.5 > > > > Using cached click-7.1.1-py2.py3-none-any.whl > (82 kB) > > > > Collecting typed-ast>=1.4.0 > > > > Using cached > > typed_ast-1.4.1-cp36-cp36m-manylinux1_x86_64.whl > > > (737 kB) > > > > Collecting toml>=0.9.4 > > > > Using cached toml-0.10.0-py2.py3-none-any.whl > (25 kB) > > > > Collecting regex > > > > Using cached > > > regex-2020.2.20-cp36-cp36m-manylinux2010_x86_64.whl > (690 kB) > > > > Collecting pathspec<1,>=0.6 > > > > Using cached pathspec-0.7.0-py2.py3-none-any.whl > (25 kB) > > > > Collecting attrs>=18.1.0 > > > > Using cached attrs-19.3.0-py2.py3-none-any.whl > (39 kB) > > > > Installing collected packages: appdirs, click, > typed-ast, > > toml, > > > regex, > > > > pathspec, attrs, black > > > > Successfully installed appdirs-1.4.3 attrs-19.3.0 > > black-19.10b0 > > > > click-7.1.1 pathspec-0.7.0 regex-2020.2.20 toml-0.10.0 > > > typed-ast-1.4.1 > > > > black finish: getenv > /home/x/Packages/network/.tox/env-3.6 > > after > > > 16.57 > > > > seconds > > > > black start: finishvenv > > > > write config to > > > /home/x/Packages/network/.tox/env-3.6/.tox-config1 as > > > > '571eea842171567130292613028f2ee2 > > /usr/bin/python3.6\n3.13.2 0 0 > > > > 0\n00000000000000000000000000000000 black' > > > > black finish: finishvenv after 0.01 seconds > > > > black start: envreport > > > > setting > > > > > > > > > > PATH=/home/x/Packages/network/.tox/env-3.6/bin:/usr/bin:/home/x/.local/bin:/home/x/bin:/usr/condabin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin > > > > [3297] /home/x/Packages/network$ > > > > /home/x/Packages/network/.tox/env-3.6/bin/python -m > pip freeze > > > > >.tox/env-3.6/log/black-0.log > > > > black finish: envreport after 1.16 seconds > > > > black installed: > > > > > > > > > > appdirs==1.4.3,attrs==19.3.0,black==19.10b0,click==7.1.1,pathspec==0.7.0,regex==2020.2.20,toml==0.10.0,typed-ast==1.4.1 > > > > black start: run-test-pre > > > > black run-test-pre: PYTHONHASHSEED='1654117319' > > > > black finish: run-test-pre after 0.00 seconds > > > > black start: run-test > > > > black run-test: commands[0] | bash > > > > /home/x/Packages/network/.travis/runblack.sh > > > > /home/x/Packages/network/.tox/env-3.6/bin/python > --check > > --diff . > > > > setting > > > > > > > > > > PATH=/home/x/Packages/network/.tox/env-3.6/bin:/usr/bin:/home/x/.local/bin:/home/x/bin:/usr/condabin:/usr/lib64/ccache:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin > > > > [3298] /home/x/Packages/network$ /usr/bin/bash > > .travis/runblack.sh > > > > .tox/env-3.6/bin/python --check --diff . > > > > + /usr/bin/python3.6 -m black --include '^[^.].*\.py$' > > --exclude > > > > '/(\.[^.].*|tests/roles)/' --check --diff . > > > > /usr/bin/python3.6: No module named black > > > > ERROR: InvocationError for command /usr/bin/bash > > .travis/runblack.sh > > > > .tox/env-3.6/bin/python --check --diff . (exited > with code 1) > > > > black finish: run-test after 0.19 seconds > > > > black start: run-test-post > > > > black finish: run-test-post after 0.00 seconds > > > > > > > > Hope this helps , > > > > Harsh > > > > > > > > On Wed, Mar 18, 2020 at 7:43 PM Rich Megginson > > > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> wrote: > > > > > > > > On 3/18/20 12:55 AM, Harsh Jain wrote: > > > > > Could you tell me what version of pytest you > are using? > > > > > > > > Well, it is failing even before that. There is > something > > > strange going > > > > on with how tox is setting up the virtual > > environment. The > > > problem > > > > is here: > > > > > > > > > + /usr/bin/python3.6 -m black --include > > > '^[^.].*\.py$' --exclude > > > > > '/(\.[^.].*|tests/roles)/' --check --diff . > > > > > /usr/bin/python3.6: No module named black > > > > > > > > That is, it is trying to run the standard > system python, > > > outside of the > > > > tox virtual environment, so it cannot find the > `black` > > module > > > which was > > > > installed into the tox virtual environment. > > > > > > > > For example, this is what I see when I run `tox > -vvv`: > > > > > > > > using tox.ini: > > > /home/rmeggins/linux-system-roles/network/tox.ini (pid > > > > 249249) > > > > ... > > > > black create: > > > /home/rmeggins/linux-system-roles/network/.tox/env-3.6 > > > > python3.6 (/usr/bin/python3.6) is {'executable': > > > '/usr/bin/python3.6', > > > > 'name': 'python', 'version_info': [3, 6, 10, > 'final', 0], > > > 'version': > > > > '3.6.10 (default, Dec 20 2019, 00:00:00) \n[GCC > 9.2.1 > > > 20190827 (Red Hat > > > > 9.2.1-1)]', 'is_64': True, 'sysplatform': 'linux'} > > > > black uses /usr/bin/python3.6 > > > > ... > > > > setting > > > > > > > > > > PATH=/home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin:/usr/share/Modules/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/rmeggins/bin:/home/rmeggins/go/bin > > > > [249270] > /home/rmeggins/linux-system-roles/network/.tox$ > > > > /usr/bin/python3 -m virtualenv --no-download > --python > > > > /usr/bin/python3.6 > > > > env-3.6 > > > > ... > > > > New python executable in > > > > > > > > > > /home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin/python3.6 > > > > Also creating executable in > > > > > > > /home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin/python > > > > ... This is the key - tox actually creates a python > > > executable in the > > > > tox venv. > > > > black installdeps: black > > > > setting > > > > > > > > > > PATH=/home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin:/usr/share/Modules/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/rmeggins/bin:/home/rmeggins/go/bin > > > > [249280] /home/rmeggins/linux-system-roles/network$ > > > > > > > > > > /home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin/python -m > > > > pip > > > > install black > > > > ... It is now using .tox/env-3.6/bin/python > instead of > > > > /usr/bin/python3.6 > > > > black installed: > > > > > > > > > > appdirs==1.4.3,attrs==19.3.0,black==19.10b0,click==7.1.1,pathspec==0.7.0,regex==2020.2.20,toml==0.10.0,typed-ast==1.4.1 > > > > ... > > > > black start: run-test > > > > black run-test: commands[0] | bash > > > > > > /home/rmeggins/linux-system-roles/network/.travis/runblack.sh > > > > > > > /home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin/python > > > > --check --diff . > > > > setting > > > > > > > > > > PATH=/home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin:/usr/share/Modules/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/rmeggins/bin:/home/rmeggins/go/bin > > > > [249287] /home/rmeggins/linux-system-roles/network$ > > /usr/bin/bash > > > > .travis/runblack.sh .tox/env-3.6/bin/python --check > > --diff . > > > > + > > > > > > /home/rmeggins/linux-system-roles/network/.tox/env-3.6/bin/python3.6 > > > > -m black --include '^[^.].*\.py$' --exclude > > > '/(\.[^.].*|tests/roles)/' > > > > --check --diff . > > > > All done! ✨ 🍰 ✨ > > > > > > > > So you can see that the `black` test is using > the python > > > exectable from > > > > the tox venv .tox/env-3.6/bin/python3.6 > > > > > > > > Can you run `rm -rf .tox; tox -vvv` and send me the > > output up > > > to where > > > > `black` fails? > > > > > > > > > Thanks , > > > > > Harsh > > > > > > > > > > On Wed, 18 Mar, 2020, 10:33 Harsh Jain, > > > <harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>>> > > > > wrote: > > > > > > > > > > i did rm -rf .tox and then ran tox > again and > > got this > > > which > > > > is same > > > > > as before > > > > > > > > > > black create: > > > /home/x/Packages/network-roles/network/.tox/env-3.6 > > > > > black installdeps: black > > > > > black installed: > > > > > > > > > > > > > > > appdirs==1.4.3,attrs==19.3.0,black==19.10b0,click==7.1.1,pathspec==0.7.0,regex==2020.2.20,toml==0.10.0,typed-ast==1.4.1 > > > > > black run-test-pre: > PYTHONHASHSEED='49582215' > > > > > black run-test: commands[0] | bash > > > > > > > /home/x/Packages/network-roles/network/.travis/runblack.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.6/bin/python > > > > > --check --diff . > > > > > + /usr/bin/python3.6 -m black --include > > '^[^.].*\.py$' > > > --exclude > > > > > '/(\.[^.].*|tests/roles)/' --check --diff . > > > > > /usr/bin/python3.6: No module named black > > > > > ERROR: InvocationError for command > /usr/bin/bash > > > > .travis/runblack.sh > > > > > .tox/env-3.6/bin/python --check --diff . > > (exited with > > > code 1) > > > > > pylint create: > > > > /home/x/Packages/network-roles/network/.tox/env-2.7 > > > > > pylint installdeps: colorama, pylint>=1.8.4, > > ansible, > > > > > -rpylint_extra_requirements.txt > > > > > pylint installed: DEPRECATION: Python 2.7 > > reached the > > > end of its > > > > > life on January 1st, 2020. Please > upgrade your > > Python as > > > > Python 2.7 > > > > > is no longer maintained. A future version of > > pip will drop > > > > support > > > > > for Python 2.7. More details about Python 2 > > support in > > > pip, > > > > can be > > > > > found at > > > > > > > > > > > > > > > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,ansible==2.9.6,astroid==1.6.6,backports.functools-lru-cache==1.6.1,cffi==1.14.0,colorama==0.4.3,configparser==4.0.2,cryptography==2.8,enum34==1.1.10,futures==3.3.0,ipaddress==1.0.23,isort==4.3.21,Jinja2==2.11.1,lazy-object-proxy==1.4.3,MarkupSafe==1.1.1,mccabe==0.6.1,pycparser==2.20,pylint==1.9.5,PyYAML==5.3,singledispatch==3.4.0.3,six==1.14.0,wrapt==1.12.1 > > > > > pylint run-test-pre: > PYTHONHASHSEED='49582215' > > > > > pylint run-test: commands[0] | bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpylint.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-2.7/bin/python > > > > > --errors-only > > > > > + > > > > /home/x/Packages/network-roles/network/.tox/env-2.7/bin/python > > > > > > > > > /home/x/Packages/network-roles/network/.travis/custom_pylint.py > > > > > --errors-only > > > > > > > > > > > /home/x/Packages/network-roles/network/.travis/custom_pylint.py: > > > > > files to be checked: > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/tests/unit/test_nm_provider.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/tests/unit/test_network_connections.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/tests/ensure_non_running_provider.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/__init__.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/nm_provider.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/argument_validator.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/utils.py > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/library/network_connections.py > > > > > Using config file > > > /home/x/Packages/network-roles/network/pylintrc > > > > > flake8 recreate: > > > > /home/x/Packages/network-roles/network/.tox/env-2.7 > > > > > flake8 installdeps: flake8>=3.5 > > > > > flake8 installed: DEPRECATION: Python 2.7 > > reached the > > > end of its > > > > > life on January 1st, 2020. Please > upgrade your > > Python as > > > > Python 2.7 > > > > > is no longer maintained. A future version of > > pip will drop > > > > support > > > > > for Python 2.7. More details about Python 2 > > support in > > > pip, > > > > can be > > > > > found at > > > > > > > > > > > > > > > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,configparser==4.0.2,entrypoints==0.3,enum34==1.1.10,flake8==3.7.9,functools32==3.2.3.post2,mccabe==0.6.1,pycodestyle==2.5.0,pyflakes==2.1.1,typing==3.7.4.1 > > > > > flake8 run-test-pre: > PYTHONHASHSEED='49582215' > > > > > flake8 run-test: commands[0] | bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runflake8.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-2.7/bin/python > > > > > --statistics . > > > > > + > > > > > > > /home/x/Packages/network-roles/network/.tox/env-2.7/bin/python -m > > > > > flake8 --statistics . > > > > > py26 create: > > > /home/x/Packages/network-roles/network/.tox/env-2.6 > > > > > SKIPPED: InterpreterNotFound: python2.6 > > > > > py27 recreate: > > > > /home/x/Packages/network-roles/network/.tox/env-2.7 > > > > > py27 installdeps: pytest-cov, > pytest>=3.5.1, mock > > > > > py27 installed: DEPRECATION: Python 2.7 > reached > > the end of > > > > its life > > > > > on January 1st, 2020. Please upgrade your > > Python as Python > > > > 2.7 is no > > > > > longer maintained. A future version of > pip will > > drop > > > support for > > > > > Python 2.7. More details about Python 2 > support in > > > pip, can > > > > be found > > > > > at > > > > > > > > > > > > > > > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,atomicwrites==1.3.0,attrs==19.3.0,configparser==4.0.2,contextlib2==0.6.0.post1,coverage==5.0.4,funcsigs==1.0.2,importlib-metadata==1.5.0,mock==3.0.5,more-itertools==5.0.0,packaging==20.3,pathlib2==2.3.5,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==4.6.9,pytest-cov==2.8.1,scandir==1.10.0,six==1.14.0,wcwidth==0.1.8,zipp==1.2.0 > > > > > py27 run-test-pre: PYTHONHASHSEED='49582215' > > > > > py27 run-test: commands[0] | bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-2.7/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py27 > > --cov-report=term unit > > > > > + > > > > > > > /home/x/Packages/network-roles/network/.tox/env-2.7/bin/python -m > > > > > pytest --durations=5 > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py27 > > --cov-report=term unit > > > > > > > > > > > > > > > ========================================================================== > > > > > test session starts > > > > > > > > > > > > > > > ========================================================================== > > > > > platform linux2 -- Python 2.7.17, > pytest-4.6.9, > > py-1.8.1, > > > > pluggy-0.13.1 > > > > > cachedir: .tox/env-2.7/.pytest_cache > > > > > rootdir: > /home/x/Packages/network-roles/network, > > > inifile: tox.ini > > > > > plugins: cov-2.8.1 > > > > > collected 63 items > > > > > > > > > > unit/test_network_connections.py > > > > > > > > > ..........................................................ss.. > > > > > > > > > [ 98%] > > > > > unit/test_nm_provider.py . > > > > > > > > > > [100%] > > > > > > > > > > ---------- coverage: platform linux2, python > > > 2.7.17-final-0 > > > > ---------- > > > > > Name > > > > > Stmts Miss Cover > > > > > > > > > > > > > > > ----------------------------------------------------------------------------------------------------------- > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/library/network_connections.py > > > > > �� 1397 1122 20% > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/__init__.py > > > > > 2 0 100% > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/argument_validator.py > > > > > 506 89 82% > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/nm_provider.py > > > > > 7 0 100% > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/module_utils/network_lsr/utils.py > > > > > 229 106 54% > > > > > > > > > > > > > > > ----------------------------------------------------------------------------------------------------------- > > > > > TOTAL > > > > > 2141 1317 38% > > > > > Coverage HTML written to dir htmlcov-py27 > > > > > > > > > > > > > > > > > > > > > > > > > ======================================================================= > > > > > slowest 5 test durations > > > > > > > > > > > > > > > ======================================================================== > > > > > 0.07s call > > > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestUtils::test_check_output > > > > > 0.02s call > > > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestSysUtils::test_link_read_permaddress > > > > > 0.01s teardown > > > > > > > > > > > tests/unit/test_network_connections.py::TestValidator::test_vlan > > > > > 0.01s call > > > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestValidator::test_macvlan > > > > > 0.01s call > > > > > > > > > > > tests/unit/test_network_connections.py::TestValidator::test_vlan > > > > > > > > > > > > > > > ======================================================================== > > > > > short test summary info > > > > > > > > > > > > > > > ======================================================================== > > > > > SKIPPED [1] > > > tests/unit/test_network_connections.py:2201: no > > > > support > > > > > for NM (libnm via pygobject) > > > > > SKIPPED [1] > > > tests/unit/test_network_connections.py:2215: no > > > > support > > > > > for NM (libnm via pygobject) > > > > > > > > > > > > > > > ================================================================= 61 > > > > > passed, 2 skipped in 2.63 seconds > > > > > > > > > > > > > > > ================================================================== > > > > > py36 recreate: > > > > /home/x/Packages/network-roles/network/.tox/env-3.6 > > > > > py36 installdeps: pytest-cov, pytest>=3.5.1 > > > > > py36 installed: > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.5.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8,zipp==3.1.0 > > > > > py36 run-test-pre: PYTHONHASHSEED='49582215' > > > > > py36 run-test: commands[0] | bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.6/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py36 > > --cov-report=term unit > > > > > + /usr/bin/python3.6 -m pytest --durations=5 > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py36 > > --cov-report=term unit > > > > > /usr/bin/python3.6: No module named pytest > > > > > ERROR: InvocationError for command > /usr/bin/bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.6/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py36 > > --cov-report=term unit > > > (exited > > > > with > > > > > code 1) > > > > > py37 create: > > > /home/x/Packages/network-roles/network/.tox/env-3.7 > > > > > py37 installdeps: pytest-cov, pytest>=3.5.1 > > > > > py37 installed: > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.5.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8,zipp==3.1.0 > > > > > py37 run-test-pre: PYTHONHASHSEED='49582215' > > > > > py37 run-test: commands[0] | bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.7/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py37 > > --cov-report=term unit > > > > > + /usr/bin/python3.7 -m pytest --durations=5 > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py37 > > --cov-report=term unit > > > > > ERROR: usage: __main__.py [options] > [file_or_dir] > > > > [file_or_dir] [...] > > > > > __main__.py: error: unrecognized arguments: > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py37 > --cov-report=term > > > > > inifile: > > /home/x/Packages/network-roles/network/tox.ini > > > > > rootdir: > /home/x/Packages/network-roles/network > > > > > > > > > > ERROR: InvocationError for command > /usr/bin/bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.7/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py37 > > --cov-report=term unit > > > (exited > > > > with > > > > > code 4) > > > > > py38 create: > > > /home/x/Packages/network-roles/network/.tox/env-3.8 > > > > > py38 installdeps: pytest-cov, pytest>=3.5.1 > > > > > py38 installed: > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.4,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8 > > > > > py38 run-test-pre: PYTHONHASHSEED='49582215' > > > > > py38 run-test: commands[0] | bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.8/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py38 > > --cov-report=term unit > > > > > + /usr/bin/python3.8 -m pytest --durations=5 > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py38 > > --cov-report=term unit > > > > > /usr/bin/python3.8: No module named pytest > > > > > ERROR: InvocationError for command > /usr/bin/bash > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.8/bin/python > > > > > --durations=5 > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > --cov-report=html:htmlcov-py38 > > --cov-report=term unit > > > (exited > > > > with > > > > > code 1) > > > > > custom create: > > > > > /home/x/Packages/network-roles/network/.tox/env-custom > > > > > custom installdeps: > -rcustom_requirements.txt > > > > > custom installed: PyYAML==5.3 > > > > > custom run-test-pre: > PYTHONHASHSEED='49582215' > > > > > custom run-test: commands[0] | bash > > > > > > > /home/x/Packages/network-roles/network/.travis/custom.sh > > > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-custom/bin/python > > > > > /usr/bin/python3 > > > > > + cd > /home/x/Packages/network-roles/network/tests > > > > > + /usr/bin/python3.7 > > ./ensure_non_running_provider.py > > > > > ERROR: No tests for other provider found > for: > > > > > tests_default_inscripts.yml > > > > > Try to generate them with > > > './ensure_non_running_provider.py > > > > generate' > > > > > ERROR: InvocationError for command > /usr/bin/bash > > > > .travis/custom.sh > > > > > .tox/env-custom/bin/python > /usr/bin/python3 (exited > > > with code 1) > > > > > > > > > > > > > > > ________________________________________________________________________________ > > > > > summary > > > > > > > > > > > > > > > ________________________________________________________________________________ > > > > > ERROR: black: commands failed > > > > > pylint: commands succeeded > > > > > flake8: commands succeeded > > > > > SKIPPED: py26: InterpreterNotFound: > python2.6 > > > > > py27: commands succeeded > > > > > ERROR: py36: commands failed > > > > > ERROR: py37: commands failed > > > > > ERROR: py38: commands failed > > > > > ERROR: custom: commands failed > > > > > > > > > > for ls -alrtF .tox/env-3.6/bin > > > > > i get > > > > > lrwxrwxrwx. 1 x x 18 Mar 18 10:20 > python -> > > > /usr/bin/python3.6* > > > > > lrwxrwxrwx. 1 x x 6 Mar 18 10:20 > python3.6 > > -> python* > > > > > lrwxrwxrwx. 1 x x 6 Mar 18 10:20 > python3 -> > > python* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:20 wheel* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:20 > wheel-3.6* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:20 wheel3* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:20 > easy_install3* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:20 > > easy_install-3.6* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:20 > easy_install* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:20 pip* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:20 pip-3.6* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:20 pip3* > > > > > -rw-rw-r--. 1 x x 2240 Mar 18 10:20 activate > > > > > -rw-rw-r--. 1 x x 1459 Mar 18 10:20 > activate.csh > > > > > -rw-rw-r--. 1 x x 3090 Mar 18 10:20 > activate.fish > > > > > -rw-rw-r--. 1 x x 1751 Mar 18 10:20 > activate.ps1 > > > > > -rw-rw-r--. 1 x x 1232 Mar 18 10:20 > > activate_this.py > > > > > -rw-rw-r--. 1 x x 1181 Mar 18 10:20 > activate.xsh > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:20 > coverage* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:20 > coverage-3.6* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:20 > coverage3* > > > > > -rwxrwxr-x. 1 x x 251 Mar 18 10:20 py.test* > > > > > -rwxrwxr-x. 1 x x 251 Mar 18 10:20 pytest* > > > > > drwxrwxr-x. 2 x x 4096 Mar 18 10:20 ./ > > > > > drwxrwxr-x. 7 x x 4096 Mar 18 10:20 ../ > > > > > > > > > > ls -alrtF .tox/env-3.7/bin > > > > > > > > > > lrwxrwxrwx. 1 x x 16 Mar 18 10:20 > python -> > > > /usr/bin/python3* > > > > > lrwxrwxrwx. 1 x x 6 Mar 18 10:20 > python3.7 > > -> python* > > > > > lrwxrwxrwx. 1 x x 6 Mar 18 10:20 > python3 -> > > python* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:20 wheel* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:20 > wheel-3.7* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:20 wheel3* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:20 > > easy_install-3.7* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:20 > easy_install3* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:20 > easy_install* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:20 pip-3.7* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:20 pip* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:20 pip3* > > > > > -rw-rw-r--. 1 x x 2240 Mar 18 10:20 activate > > > > > -rw-rw-r--. 1 x x 1459 Mar 18 10:20 > activate.csh > > > > > -rw-rw-r--. 1 x x 3090 Mar 18 10:20 > activate.fish > > > > > -rw-rw-r--. 1 x x 1751 Mar 18 10:20 > activate.ps1 > > > > > -rw-rw-r--. 1 x x 1232 Mar 18 10:20 > > activate_this.py > > > > > -rw-rw-r--. 1 x x 1181 Mar 18 10:20 > activate.xsh > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:21 > coverage* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:21 > coverage-3.7* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:21 > coverage3* > > > > > -rwxrwxr-x. 1 x x 251 Mar 18 10:21 py.test* > > > > > -rwxrwxr-x. 1 x x 251 Mar 18 10:21 pytest* > > > > > drwxrwxr-x. 2 x x 4096 Mar 18 10:21 ./ > > > > > drwxrwxr-x. 7 x x 4096 Mar 18 10:21 ../ > > > > > > > > > > i also did ls -alrtF .tox/env-3.8/bin > > > > > and got > > > > > lrwxrwxrwx. 1 x x 18 Mar 18 10:21 > python -> > > > /usr/bin/python3.8* > > > > > lrwxrwxrwx. 1 x x 6 Mar 18 10:21 > python3.8 > > -> python* > > > > > lrwxrwxrwx. 1 x x 6 Mar 18 10:21 > python3 -> > > python* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:21 > wheel-3.8* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:21 wheel* > > > > > -rwxrwxr-x. 1 x x 254 Mar 18 10:21 wheel3* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:21 > easy_install3* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:21 > > easy_install-3.8* > > > > > -rwxrwxr-x. 1 x x 276 Mar 18 10:21 > easy_install* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:21 pip-3.8* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:21 pip* > > > > > -rwxrwxr-x. 1 x x 267 Mar 18 10:21 pip3* > > > > > -rw-rw-r--. 1 x x 2240 Mar 18 10:21 activate > > > > > -rw-rw-r--. 1 x x 1459 Mar 18 10:21 > activate.csh > > > > > -rw-rw-r--. 1 x x 3090 Mar 18 10:21 > activate.fish > > > > > -rw-rw-r--. 1 x x 1751 Mar 18 10:21 > activate.ps1 > > > > > -rw-rw-r--. 1 x x 1232 Mar 18 10:21 > > activate_this.py > > > > > -rw-rw-r--. 1 x x 1181 Mar 18 10:21 > activate.xsh > > > > > -rwxrwxr-x. 1 x x 251 Mar 18 10:21 py.test* > > > > > -rwxrwxr-x. 1 x x 251 Mar 18 10:21 pytest* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:21 > coverage* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:21 > coverage-3.8* > > > > > -rwxrwxr-x. 1 x x 261 Mar 18 10:21 > coverage3* > > > > > drwxrwxr-x. 2 x x 4096 Mar 18 10:21 ./ > > > > > drwxrwxr-x. 7 x x 4096 Mar 18 10:21 ../ > > > > > > > > > > I do have another system with manjaro , I'll > > try it on > > > that > > > > as well . > > > > > Thanks, > > > > > Harsh > > > > > > > > > > > > > > > On Tue, Mar 17, 2020 at 11:11 PM Rich > Megginson > > > > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>> > > wrote: > > > > > > > > > > Try doing `rm -rf .tox` first, to > completely > > > recreate the tox > > > > > environments - perhaps there was some > > lingering stuff > > > > left over > > > > > from the > > > > > pip installed tox. > > > > > > > > > > Then, if that doesn't work, let's > see the > > output > > > of `ls > > > > -alrtF > > > > > .tox/env-3.6/bin` and `ls -alrtF > > .tox/env-3.7/bin` > > > > > > > > > > On 3/17/20 10:56 AM, Harsh Jain wrote: > > > > > > here are the results of running > tox after > > > uninstalling and > > > > > reinstalling > > > > > > using dnf > > > > > > I have used a ## before the errors so > > they are > > > a little > > > > > easier to spot , > > > > > > I'm still getting the same error > and now I'm > > > also getting > > > > > invocation > > > > > > errors for pytest for pyhton 3.6 > and 3.8 > > , also for > > > > black for > > > > > 3.6 tox > > > > > > version is 3.13.2 > > > > > > > > > > > > black create: > > /home/x/Packages/network/.tox/env-3.6 > > > > > > black installdeps: black > > > > > > black installed: > > > > > > > > > > > > > > > > > > > > > appdirs==1.4.3,attrs==19.3.0,black==19.10b0,click==7.1.1,pathspec==0.7.0,regex==2020.2.20,toml==0.10.0,typed-ast==1.4.1 > > > > > > black run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > black run-test: commands[0] | bash > > > > > > > /home/x/Packages/network/.travis/runblack.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.6/bin/python > > > > --check --diff . > > > > > > + /usr/bin/python3.6 -m black > --include > > > '^[^.].*\.py$' > > > > --exclude > > > > > > '/(\.[^.].*|tests/roles)/' > --check --diff . > > > > > > /usr/bin/python3.6: No module > named black > > > > > > ##ERROR: InvocationError for command > > /usr/bin/bash > > > > > .travis/runblack.sh > > > > > > .tox/env-3.6/bin/python --check > --diff . > > > (exited with > > > > code 1) > > > > > > pylint create: > > > /home/x/Packages/network/.tox/env-2.7 > > > > > > pylint installdeps: colorama, > pylint>=1.8.4, > > > ansible, > > > > > > -rpylint_extra_requirements.txt > > > > > > pylint installed: DEPRECATION: > Python 2.7 > > > reached the > > > > end of > > > > > its life on > > > > > > January 1st, 2020. Please upgrade > your > > Python as > > > > Python 2.7 > > > > > is no longer > > > > > > maintained. A future version of > pip will > > drop > > > support for > > > > > Python 2.7. > > > > > > More details about Python 2 > support in > > pip, can be > > > > found at > > > > > > > > > > > > > > > > > > > > > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,ansible==2.9.6,astroid==1.6.6,backports.functools-lru-cache==1.6.1,cffi==1.14.0,colorama==0.4.3,configparser==4.0.2,cryptography==2.8,enum34==1.1.10,futures==3.3.0,ipaddress==1.0.23,isort==4.3.21,Jinja2==2.11.1,lazy-object-proxy==1.4.3,MarkupSafe==1.1.1,mccabe==0.6.1,pycparser==2.20,pylint==1.9.5,PyYAML==5.3,singledispatch==3.4.0.3,six==1.14.0,wrapt==1.12.1 > > > > > > pylint run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > pylint run-test: commands[0] | bash > > > > > > > > /home/x/Packages/network/.travis/runpylint.sh > > > > > > > > /home/x/Packages/network/.tox/env-2.7/bin/python > > > > --errors-only > > > > > > + > > /home/x/Packages/network/.tox/env-2.7/bin/python > > > > > > > > /home/x/Packages/network/.travis/custom_pylint.py > > > > --errors-only > > > > > > > > /home/x/Packages/network/.travis/custom_pylint.py: > > > > files to > > > > > be checked: > > > > > > > > > > > /home/x/Packages/network/tests/unit/test_nm_provider.py > > > > > > > > > > > > > > > > > /home/x/Packages/network/tests/unit/test_network_connections.py > > > > > > > > > > > > > > > /home/x/Packages/network/tests/ensure_non_running_provider.py > > > > > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/__init__.py > > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/nm_provider.py > > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/argument_validator.py > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/utils.py > > > > > > > > > > > /home/x/Packages/network/library/network_connections.py > > > > > > Using config file > > /home/x/Packages/network/pylintrc > > > > > > flake8 recreate: > > > /home/x/Packages/network/.tox/env-2.7 > > > > > > flake8 installdeps: flake8>=3.5 > > > > > > flake8 installed: DEPRECATION: > Python 2.7 > > > reached the > > > > end of > > > > > its life on > > > > > > January 1st, 2020. Please upgrade > your > > Python as > > > > Python 2.7 > > > > > is no longer > > > > > > maintained. A future version of > pip will > > drop > > > support for > > > > > Python 2.7. > > > > > > More details about Python 2 > support in > > pip, can be > > > > found at > > > > > > > > > > > > > > > > > > > > > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,configparser==4.0.2,entrypoints==0.3,enum34==1.1.10,flake8==3.7.9,functools32==3.2.3.post2,mccabe==0.6.1,pycodestyle==2.5.0,pyflakes==2.1.1,typing==3.7.4.1 > > > > > > flake8 run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > flake8 run-test: commands[0] | bash > > > > > > > > /home/x/Packages/network/.travis/runflake8.sh > > > > > > > > /home/x/Packages/network/.tox/env-2.7/bin/python > > > > --statistics . > > > > > > + > > > /home/x/Packages/network/.tox/env-2.7/bin/python -m > > > > flake8 > > > > > --statistics . > > > > > > py26 create: > > /home/x/Packages/network/.tox/env-2.6 > > > > > > SKIPPED: InterpreterNotFound: > python2.6 > > > > > > py27 recreate: > > > /home/x/Packages/network/.tox/env-2.7 > > > > > > py27 installdeps: pytest-cov, > > pytest>=3.5.1, mock > > > > > > py27 installed: DEPRECATION: > Python 2.7 > > reached > > > the end of > > > > > its life on > > > > > > January 1st, 2020. Please upgrade > your > > Python as > > > > Python 2.7 > > > > > is no longer > > > > > > maintained. A future version of > pip will > > drop > > > support for > > > > > Python 2.7. > > > > > > More details about Python 2 > support in > > pip, can be > > > > found at > > > > > > > > > > > > > > > > > > > > > https://pip.pypa.io/en/latest/development/release-process/#python-2-support,atomicwrites==1.3.0,attrs==19.3.0,configparser==4.0.2,contextlib2==0.6.0.post1,coverage==5.0.4,funcsigs==1.0.2,importlib-metadata==1.5.0,mock==3.0.5,more-itertools==5.0.0,packaging==20.3,pathlib2==2.3.5,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==4.6.9,pytest-cov==2.8.1,scandir==1.10.0,six==1.14.0,wcwidth==0.1.8,zipp==1.2.0 > > > > > > py27 run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > py27 run-test: commands[0] | bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-2.7/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py27 > > > --cov-report=term unit > > > > > > + > > > /home/x/Packages/network/.tox/env-2.7/bin/python -m > > > > pytest > > > > > > --durations=5 > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py27 > > > --cov-report=term unit > > > > > > > > > > > > > > > > > > > > > ========================================================================== > > > > > > > > > > > test session starts > > > > > > > > > > > > > > > > > > > > > ========================================================================== > > > > > > platform linux2 -- Python 2.7.17, > > pytest-4.6.9, > > > py-1.8.1, > > > > > pluggy-0.13.1 > > > > > > cachedir: .tox/env-2.7/.pytest_cache > > > > > > rootdir: /home/x/Packages/network, > > inifile: tox.ini > > > > > > plugins: cov-2.8.1 > > > > > > collected 63 items > > > > > > > > > > > > unit/test_network_connections.py > > > > > > > > > > > > ..........................................................ss.. > > > > > > > > > > [ 98%] > > > > > > unit/test_nm_provider.py . > > > > > > > > > > > > [100%] > > > > > > > > > > > > ---------- coverage: platform > linux2, python > > > > 2.7.17-final-0 > > > > > ---------- > > > > > > Name > > > > > > Stmts Miss Cover > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------------------------------- > > > > > > > > > /home/x/Packages/network/library/network_connections.py > > > > > > 1397 1122 20% > > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/__init__.py > > > > > > 2 0 100% > > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/argument_validator.py > > > > > > > > > > > 506 89 82% > > > > > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/nm_provider.py > > > > > > 7 0 100% > > > > > > > > > /home/x/Packages/network/module_utils/network_lsr/utils.py > > > > > > 229 106 54% > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------------------------------- > > > > > > TOTAL > > > > > > 2141 1317 38% > > > > > > Coverage HTML written to dir > htmlcov-py27 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ======================================================================= > > > > > > > > > > > slowest 5 test durations > > > > > > > > > > > > > > > > > > > > > ======================================================================== > > > > > > 0.07s call > > > > > > > > > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestUtils::test_check_output > > > > > > 0.03s call > > > > > > > > > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestSysUtils::test_link_read_permaddress > > > > > > 0.01s teardown > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestValidator::test_vlan > > > > > > 0.01s call > > > > > > > > > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestValidator::test_macvlan > > > > > > 0.01s call > > > > > > > > > > > > > tests/unit/test_network_connections.py::TestValidator::test_vlan > > > > > > > > > > > > > > > > > > > > > ======================================================================== > > > > > > > > > > > short test summary info > > > > > > > > > > > > > > > > > > > > > ======================================================================== > > > > > > SKIPPED [1] > > > > tests/unit/test_network_connections.py:2201: no > > > > > support for > > > > > > NM (libnm via pygobject) > > > > > > SKIPPED [1] > > > > tests/unit/test_network_connections.py:2215: no > > > > > support for > > > > > > NM (libnm via pygobject) > > > > > > > > > > > > > > > > > > > > > ================================================================= 61 > > > > > > > > > > > passed, 2 skipped in 4.37 seconds > > > > > > > > > > > > > > > > > > > > > ================================================================== > > > > > > py36 recreate: > > > /home/x/Packages/network/.tox/env-3.6 > > > > > > py36 installdeps: pytest-cov, > pytest>=3.5.1 > > > > > > py36 installed: > > > > > > > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.5.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8,zipp==3.1.0 > > > > > > py36 run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > py36 run-test: commands[0] | bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.6/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py36 > > > --cov-report=term unit > > > > > > + /usr/bin/python3.6 -m pytest > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py36 > > > --cov-report=term unit > > > > > > /usr/bin/python3.6: No module > named pytest > > > > > > ##ERROR: InvocationError for command > > /usr/bin/bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.6/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py36 > > > --cov-report=term unit > > > > (exited > > > > > with code 1) > > > > > > py37 recreate: > > > /home/x/Packages/network/.tox/env-3.7 > > > > > > py37 installdeps: pytest-cov, > pytest>=3.5.1 > > > > > > py37 installed: > > > > > > > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.4,importlib-metadata==1.5.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8,zipp==3.1.0 > > > > > > py37 run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > py37 run-test: commands[0] | bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.7/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py37 > > > --cov-report=term unit > > > > > > + /usr/bin/python3.7 -m pytest > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py37 > > > --cov-report=term unit > > > > > > ##ERROR: usage: __main__.py [options] > > [file_or_dir] > > > > > [file_or_dir] [...] > > > > > > __main__.py: error: unrecognized > arguments: > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py37 > > --cov-report=term > > > > > > inifile: > /home/x/Packages/network/tox.ini > > > > > > rootdir: /home/x/Packages/network > > > > > > > > > > > > ##ERROR: InvocationError for command > > /usr/bin/bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.7/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py37 > > > --cov-report=term unit > > > > (exited > > > > > with code 4) > > > > > > py38 create: > > /home/x/Packages/network/.tox/env-3.8 > > > > > > py38 installdeps: pytest-cov, > pytest>=3.5.1 > > > > > > py38 installed: > > > > > > > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.4,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8 > > > > > > py38 run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > py38 run-test: commands[0] | bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.8/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py38 > > > --cov-report=term unit > > > > > > + /usr/bin/python3.8 -m pytest > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py38 > > > --cov-report=term unit > > > > > > /usr/bin/python3.8: No module > named pytest > > > > > > ##ERROR: InvocationError for command > > /usr/bin/bash > > > > > > > > /home/x/Packages/network/.travis/runpytest.sh > > > > > > > > /home/x/Packages/network/.tox/env-3.8/bin/python > > > > --durations=5 > > > > > > > --cov=/home/x/Packages/network/library > > > > > > > --cov=/home/x/Packages/network/module_utils > > > > > > --cov-report=html:htmlcov-py38 > > > --cov-report=term unit > > > > (exited > > > > > with code 1) > > > > > > custom recreate: > > > /home/x/Packages/network/.tox/env-custom > > > > > > custom installdeps: > > -rcustom_requirements.txt > > > > > > custom installed: PyYAML==5.3 > > > > > > custom run-test-pre: > > PYTHONHASHSEED='3279583724' > > > > > > custom run-test: commands[0] | bash > > > > > > > /home/x/Packages/network/.travis/custom.sh > > > > > > > > /home/x/Packages/network/.tox/env-custom/bin/python > > > > > /usr/bin/python3 > > > > > > + cd /home/x/Packages/network/tests > > > > > > + /usr/bin/python3.7 > > > ./ensure_non_running_provider.py > > > > > > > > > > > > > > > > > > > > > ________________________________________________________________________________ > > > > > > > > > > > summary > > > > > > > > > > > > > > > > > > > > > ________________________________________________________________________________ > > > > > > ERROR: black: commands failed > > > > > > pylint: commands succeeded > > > > > > flake8: commands succeeded > > > > > > SKIPPED: py26: InterpreterNotFound: > > python2.6 > > > > > > py27: commands succeeded > > > > > > ERROR: py36: commands failed > > > > > > ERROR: py37: commands failed > > > > > > ERROR: py38: commands failed > > > > > > custom: commands succeeded > > > > > > (base) [x@localhost network]$ tox > --version > > > > > > 3.13.2 imported from > > > > > > > /usr/lib/python3.7/site-packages/tox/__init__.py > > > > > > > > > > > > Should I try anything else ? > > > > > > Thanks, > > > > > > Harsh > > > > > > > > > > > > On Tue, Mar 17, 2020 at 9:42 PM Rich > > Megginson > > > > > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>>> > > > wrote: > > > > > > > > > > > > On 3/17/20 9:47 AM, Harsh > Jain wrote: > > > > > > > I'm using this configuration > > > > > > > os: fedora 31 > > > > > > > python 3.7.6 > > > > > > > tox:3.14.5 > > > > > > > > > > > > > > As I specified in the > earlier email > > > > > > > I installed tox with pip , > should I > > > remove it > > > > and use > > > > > the rpm > > > > > > instead ? > > > > > > > > > > > > Yes, please try that. > > > > > > > > > > > > > > > > > > > > On Tue, 17 Mar, 2020, > 20:51 Rich > > Megginson, > > > > > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>> > > > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>>>> > > > wrote: > > > > > > > > > > > > > > What platform are you > using? > > > Fedora? What > > > > > version of tox? > > > > > > I'm using > > > > > > > the system rpm tox > > > > > python3-tox-3.13.2-3.fc31.noarch on > Fedora 31 > > > > > > > > > > > > > > On 3/17/20 8:37 AM, > Shreyas > > Papinwar > > > wrote: > > > > > > > > Yes, I am getting the > > exact same > > > error. > > > > > > > > > > > > > > > > Please help! > > > > > > > > > > > > > > > > On Tue, Mar 17, > 2020, 7:47 PM > > > Harsh Jain > > > > > > <harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>>> > > > > > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>>>> > > > > > > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>> > > > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>> > > > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>> > > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>> > > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>> > > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>> > > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com> > <mailto:harshjain075@gmail.com <mailto:harshjain075@gmail.com>>>>>>>>>> > > > > > > > wrote: > > > > > > > > > > > > > > > > Hey Rich, > > > > > > > > I cloned the > repo and > > tried > > > running > > > > tox and I'm > > > > > > getting the > > > > > > > > following error > when this > > > executes: > > > > > > > > > > > > > > > > py37 run-test: > > commands[0] | bash > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.7/bin/python > > > > > > > > --durations=5 > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > > > > > > --cov-report=html:htmlcov-py37 > > > > > --cov-report=term unit > > > > > > > > + > /usr/bin/python3.7 > > -m pytest > > > > --durations=5 > > > > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > > > > > > --cov-report=html:htmlcov-py37 > > > > > --cov-report=term unit > > > > > > > > > > > > > > > > ERROR: usage: > __main__.py > > > [options] > > > > > [file_or_dir] > > > > > > > [file_or_dir] [...] > > > > > > > > __main__.py: error: > > unrecognized > > > > arguments: > > > > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > > > > > > --cov-report=html:htmlcov-py37 > > > > > --cov-report=term > > > > > > > > inifile: > > > > > > /home/x/Packages/network-roles/network/tox.ini > > > > > > > > rootdir: > > > > > /home/x/Packages/network-roles/network > > > > > > > > > > > > > > > > ERROR: > InvocationError for > > > command > > > > > /usr/bin/bash > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/.travis/runpytest.sh > > > > > > > > > > > > > > > > > > > > > > > > > /home/x/Packages/network-roles/network/.tox/env-3.7/bin/python > > > > > > > > --durations=5 > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/library > > > > > > > > > > > > > > > > > --cov=/home/x/Packages/network-roles/network/module_utils > > > > > > > > > > --cov-report=html:htmlcov-py37 > > > > > --cov-report=term unit > > > > > > (exited > > > > > > > with > > > > > > > > code 4) > > > > > > > > > > > > > > > > > > > > > > > > These are the > versions of > > > everything > > > > related > > > > > > > > > > > > > > > > py37 installed: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > attrs==19.3.0,coverage==5.0.3,importlib-metadata==1.5.0,more-itertools==8.2.0,packaging==20.3,pluggy==0.13.1,py==1.8.1,pyparsing==2.4.6,pytest==5.4.1,pytest-cov==2.8.1,six==1.14.0,wcwidth==0.1.8,zipp==3.1.0 > > > > > > > > os: fedora 31 > > > > > > > > python 3.7.6 > > > > > > > > tox:3.14.5 > > > > > > > > > > > > > > > > I can't figure > out how to > > > resolve this, > > > > > could you help > > > > > > me please? > > > > > > > > Thanks, > > > > > > > > Harsh > > > > > > > > > > > > > > > > On Mon, Mar 16, > 2020 > > at 6:52 > > > PM Rich > > > > Megginson > > > > > > > <rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>> > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>>> > > > > > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>> > > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>> > > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>> > > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>> > > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>> > > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com> > <mailto:rmeggins@redhat.com <mailto:rmeggins@redhat.com>>>>>>>>>> wrote: > > > > > > > > > > > > > > > > On 3/15/20 1:17 > > AM, Harsh > > > Jain > > > > wrote: > > > > > > > > > Hey, > > > > > > > > > I'm a CSE > > undergraduate > > > > (currently > > > > > in second > > > > > > year) and am > > > > > > > > pretty excited > > > > > > > > > to work > on the > > network > > > role > > > > and I'm > > > > > looking > > > > > > forward to > > > > > > > > working with > > > > > > > > > everyone . > > > > > > > > > I've mostly > > been trying to > > > > help with > > > > > setting up the > > > > > > > Pantheon > > > > > > > > de ,but I > > > > > > > > > thought this > > would be > > > a good > > > > > opportunity to learn > > > > > > > about other > > > > > > > > things and > > > > > > > > > > automation and > > testing > > > > intrigue me . > > > > > > > > > Again, > looking > > forward > > > to working > > > > > with everyone > > > > > > > > > > > > > > > > Welcome! I > > suggest to take a > > > > look at > > > > > > > > > > > > > > > https://github.com/linux-system-roles/network/wiki#first-steps > > > > > > > > e.g. see > > > > > > > > if you can > clone > > the repo and > > > > get the > > > > > `tox` based > > > > > > tests > > > > > > > working. > > > > > > > > > > > > > > > > > Thanks, > > > > > > > > > Harsh > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > systemroles mailing > > > list -- > > > > > > > > > > > systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>> > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>>> > > > > > > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>> > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>>>> > > > > > > > > > To > unsubscribe > > send an > > > email to > > > > > > > > > > > systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>> > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>>> > > > > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>> > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>>>> > > > > > > > > > Fedora > Code of > > Conduct: > > > > > > > > > > > > > > > https://docs.fedoraproject.org/en-US/project/code-of-conduct/ > > > > > > > > > List > Guidelines: > > > > > > > > > > > > > > https://fedoraproject.org/wiki/Mailing_list_guidelines > > > > > > > > > List > Archives: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.fedorahosted.org/archives/list/systemroles@lists.fedorahosted.org > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > systemroles > > mailing list -- > > > > > > > > > systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>> > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>>> > > > > > > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>> > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>>>> > > > > > > > > To > unsubscribe send an > > > email to > > > > > > > > > > > systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>> > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>>> > > > > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>> > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>>>> > > > > > > > > Fedora Code of > > Conduct: > > > > > > > > > > > > > > > https://docs.fedoraproject.org/en-US/project/code-of-conduct/ > > > > > > > > List > Guidelines: > > > > > > > > > > > > > > https://fedoraproject.org/wiki/Mailing_list_guidelines > > > > > > > > List Archives: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.fedorahosted.org/archives/list/systemroles@lists.fedorahosted.org > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > systemroles mailing > > list -- > > > > > > > > > systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>> > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>>> > > > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>> > > > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>> > > > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>> > > > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>> > > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>> > > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>> > > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org> > <mailto:systemroles@lists.fedorahosted.org <mailto:systemroles@lists.fedorahosted.org>>>>>>>>> > > > > > > > > To unsubscribe > send an > > email to > > > > > > > > > > > systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>> > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>>> > > > > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>> > > > > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>> > > > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>> > > > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>> > > > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>> > > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>> > > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org> > <mailto:systemroles-leave@lists.fedorahosted.org <mailto:systemroles-leave@lists.fedorahosted.org>>>>>>>>> > > > > > > > > Fedora Code of > Conduct: > > > > > > > > > > > > > > > https://docs.fedoraproject.org/en-US/project/code-of-conduct/ > > > > > > > > List Guidelines: > > > > > > > > > > > https://fedoraproject.org/wiki/Mailing_list_guidelines > > > > > > > > List Archives: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.fedorahosted.org/archives/list/systemroles@lists.fedorahosted.org > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >