├── .gitignore ├── .gitmodules ├── AUTHORS ├── COPYING ├── COPYING.BSD3 ├── COPYING.MIT ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── admin ├── Makefile.am ├── cockpit │ └── fleet-commander-admin │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── css │ │ ├── bootstrap-4.0.0.min.css │ │ └── main.css │ │ ├── img │ │ └── goa │ │ │ ├── exchange.png │ │ │ ├── facebook.png │ │ │ ├── flickr.png │ │ │ ├── foursquare.png │ │ │ ├── google.png │ │ │ ├── imap_smtp.png │ │ │ ├── kerberos.png │ │ │ ├── lastfm.png │ │ │ ├── owncloud.png │ │ │ ├── pocket.png │ │ │ ├── telepathy │ │ │ └── jabber.png │ │ │ └── windows_live.png │ │ ├── index.html │ │ ├── js │ │ ├── base.js │ │ ├── bootstrap-4.0.0.min.js │ │ ├── collectors.js │ │ ├── dialogs.js │ │ ├── fcdbusclient.js │ │ ├── fcspiceclient.js │ │ ├── goa.js │ │ ├── highlightedapps.js │ │ ├── index.js │ │ ├── jquery-3.3.1.min.js │ │ └── livesession.js │ │ ├── livesession.html │ │ ├── manifest.json │ │ └── package.json └── fleetcommander │ ├── __init__.py │ ├── constants.py.in │ ├── database.py │ ├── fcad.py │ ├── fcdbus.py │ ├── fcfreeipa.py │ ├── goa.py │ ├── libvirtcontroller.py │ ├── mergers.py │ ├── sshcontroller.py │ └── utils.py ├── autogen.sh ├── configure.ac ├── data ├── 81-fleet-commander-logger.rules ├── Makefile.am ├── fc-admin.png ├── fc-chromium-policies.json ├── fc-goa-providers.ini ├── firefox-bookmark-fclogger.in ├── firefox_bookmark_fclogger.json.in ├── fleet-commander-admin.conf.in ├── fleet-commander-admin.in ├── fleet-commander-logger.desktop.in ├── fleet-commander-logger.in ├── org.freedesktop.FleetCommander.admin.metainfo.xml └── org.freedesktop.FleetCommander.service.in ├── fleet-commander-admin.spec ├── logger ├── Makefile.am ├── firefox-extension │ ├── bookmarklogger.js │ ├── icons │ │ ├── fc-48.png │ │ └── fc-96.png │ └── manifest.json ├── firefox_bookmark_fclogger.py ├── fleet_commander_logger.py └── {c73e87a7-b5a1-4b6f-b10b-0bd70241a64d}.xpi ├── m4 └── as-ac-expand.m4 ├── package-requirements.txt ├── pylint_plugins.py ├── pylintrc ├── pyproject.toml ├── tests ├── Makefile.am ├── __init__.py ├── _fcdbus_tests.py ├── _logger_nm.py ├── _logger_test_suite.py ├── _mock_dbus.py ├── _mock_nm_dbus.py ├── _mock_realmd_dbus.py ├── _wait_for_name.py ├── azure │ ├── azure-pipelines.yml │ └── templates │ │ ├── build-fedora.yml │ │ ├── configure-fedora.yml │ │ ├── prepare-build-fedora.yml │ │ ├── prepare-lint-fedora.yml │ │ ├── publish-build.yml │ │ ├── variables-common.yml │ │ ├── variables-fedora.yml │ │ └── variables.yml ├── data │ ├── fc_goa_providers_test.ini │ ├── fleet-commander-logger │ │ └── fc-chromium-policies.json │ ├── libvirt_domain-modified-direct-debug.xml │ ├── libvirt_domain-modified-direct-plain-debug.xml │ ├── libvirt_domain-modified-direct-plain.xml │ ├── libvirt_domain-modified-direct.xml │ ├── libvirt_domain-modified-html5-debug.xml │ ├── libvirt_domain-modified-html5.xml │ ├── libvirt_domain-nospice.xml │ ├── libvirt_domain-orig.xml │ └── test.gschema.xml ├── directorymock.py ├── fcdbusclient.py ├── freeipamock.py ├── ldapmock.py ├── libvirtmock.py ├── python-wrapper.sh ├── smbmock.py ├── test_database.py ├── test_fcad.py ├── test_fcdbus.sh ├── test_fcdbus_service.py ├── test_freeipa.py ├── test_libvirt_controller.py ├── test_logger_chromium.py ├── test_logger_connmgr.py ├── test_logger_dconf.sh ├── test_logger_firefox.py ├── test_logger_main.py ├── test_logger_nm.sh ├── test_mergers.py ├── test_sshcontroller.py └── tools │ ├── ssh │ ├── ssh-keygen │ ├── ssh-keyscan │ └── ssh-session-mock └── tools ├── chrome-prefs-extract.py └── introspect_goa_providers.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.BSD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/COPYING.BSD3 -------------------------------------------------------------------------------- /COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/COPYING.MIT -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/README -------------------------------------------------------------------------------- /admin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/Makefile.am -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/.eslintignore -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/.eslintrc.json -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/css/bootstrap-4.0.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/css/bootstrap-4.0.0.min.css -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/css/main.css -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/exchange.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/facebook.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/flickr.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/foursquare.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/google.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/imap_smtp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/imap_smtp.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/kerberos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/kerberos.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/lastfm.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/owncloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/owncloud.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/pocket.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/telepathy/jabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/telepathy/jabber.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/img/goa/windows_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/img/goa/windows_live.png -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/index.html -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/base.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/bootstrap-4.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/bootstrap-4.0.0.min.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/collectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/collectors.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/dialogs.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/fcdbusclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/fcdbusclient.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/fcspiceclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/fcspiceclient.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/goa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/goa.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/highlightedapps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/highlightedapps.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/index.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/js/livesession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/js/livesession.js -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/livesession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/livesession.html -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/manifest.json -------------------------------------------------------------------------------- /admin/cockpit/fleet-commander-admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/cockpit/fleet-commander-admin/package.json -------------------------------------------------------------------------------- /admin/fleetcommander/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/__init__.py -------------------------------------------------------------------------------- /admin/fleetcommander/constants.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/constants.py.in -------------------------------------------------------------------------------- /admin/fleetcommander/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/database.py -------------------------------------------------------------------------------- /admin/fleetcommander/fcad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/fcad.py -------------------------------------------------------------------------------- /admin/fleetcommander/fcdbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/fcdbus.py -------------------------------------------------------------------------------- /admin/fleetcommander/fcfreeipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/fcfreeipa.py -------------------------------------------------------------------------------- /admin/fleetcommander/goa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/goa.py -------------------------------------------------------------------------------- /admin/fleetcommander/libvirtcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/libvirtcontroller.py -------------------------------------------------------------------------------- /admin/fleetcommander/mergers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/mergers.py -------------------------------------------------------------------------------- /admin/fleetcommander/sshcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/sshcontroller.py -------------------------------------------------------------------------------- /admin/fleetcommander/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/admin/fleetcommander/utils.py -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/configure.ac -------------------------------------------------------------------------------- /data/81-fleet-commander-logger.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/81-fleet-commander-logger.rules -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/fc-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fc-admin.png -------------------------------------------------------------------------------- /data/fc-chromium-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fc-chromium-policies.json -------------------------------------------------------------------------------- /data/fc-goa-providers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fc-goa-providers.ini -------------------------------------------------------------------------------- /data/firefox-bookmark-fclogger.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/firefox-bookmark-fclogger.in -------------------------------------------------------------------------------- /data/firefox_bookmark_fclogger.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/firefox_bookmark_fclogger.json.in -------------------------------------------------------------------------------- /data/fleet-commander-admin.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fleet-commander-admin.conf.in -------------------------------------------------------------------------------- /data/fleet-commander-admin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fleet-commander-admin.in -------------------------------------------------------------------------------- /data/fleet-commander-logger.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fleet-commander-logger.desktop.in -------------------------------------------------------------------------------- /data/fleet-commander-logger.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/fleet-commander-logger.in -------------------------------------------------------------------------------- /data/org.freedesktop.FleetCommander.admin.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/org.freedesktop.FleetCommander.admin.metainfo.xml -------------------------------------------------------------------------------- /data/org.freedesktop.FleetCommander.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/data/org.freedesktop.FleetCommander.service.in -------------------------------------------------------------------------------- /fleet-commander-admin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/fleet-commander-admin.spec -------------------------------------------------------------------------------- /logger/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/Makefile.am -------------------------------------------------------------------------------- /logger/firefox-extension/bookmarklogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/firefox-extension/bookmarklogger.js -------------------------------------------------------------------------------- /logger/firefox-extension/icons/fc-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/firefox-extension/icons/fc-48.png -------------------------------------------------------------------------------- /logger/firefox-extension/icons/fc-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/firefox-extension/icons/fc-96.png -------------------------------------------------------------------------------- /logger/firefox-extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/firefox-extension/manifest.json -------------------------------------------------------------------------------- /logger/firefox_bookmark_fclogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/firefox_bookmark_fclogger.py -------------------------------------------------------------------------------- /logger/fleet_commander_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/fleet_commander_logger.py -------------------------------------------------------------------------------- /logger/{c73e87a7-b5a1-4b6f-b10b-0bd70241a64d}.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/logger/{c73e87a7-b5a1-4b6f-b10b-0bd70241a64d}.xpi -------------------------------------------------------------------------------- /m4/as-ac-expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/m4/as-ac-expand.m4 -------------------------------------------------------------------------------- /package-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/package-requirements.txt -------------------------------------------------------------------------------- /pylint_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/pylint_plugins.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/_fcdbus_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_fcdbus_tests.py -------------------------------------------------------------------------------- /tests/_logger_nm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_logger_nm.py -------------------------------------------------------------------------------- /tests/_logger_test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_logger_test_suite.py -------------------------------------------------------------------------------- /tests/_mock_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_mock_dbus.py -------------------------------------------------------------------------------- /tests/_mock_nm_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_mock_nm_dbus.py -------------------------------------------------------------------------------- /tests/_mock_realmd_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_mock_realmd_dbus.py -------------------------------------------------------------------------------- /tests/_wait_for_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/_wait_for_name.py -------------------------------------------------------------------------------- /tests/azure/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/azure-pipelines.yml -------------------------------------------------------------------------------- /tests/azure/templates/build-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/templates/build-fedora.yml -------------------------------------------------------------------------------- /tests/azure/templates/configure-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/templates/configure-fedora.yml -------------------------------------------------------------------------------- /tests/azure/templates/prepare-build-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/templates/prepare-build-fedora.yml -------------------------------------------------------------------------------- /tests/azure/templates/prepare-lint-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/templates/prepare-lint-fedora.yml -------------------------------------------------------------------------------- /tests/azure/templates/publish-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/templates/publish-build.yml -------------------------------------------------------------------------------- /tests/azure/templates/variables-common.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | VM_IMAGE: 'Ubuntu-18.04' 3 | -------------------------------------------------------------------------------- /tests/azure/templates/variables-fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/azure/templates/variables-fedora.yml -------------------------------------------------------------------------------- /tests/azure/templates/variables.yml: -------------------------------------------------------------------------------- 1 | variables-fedora.yml -------------------------------------------------------------------------------- /tests/data/fc_goa_providers_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/fc_goa_providers_test.ini -------------------------------------------------------------------------------- /tests/data/fleet-commander-logger/fc-chromium-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/fleet-commander-logger/fc-chromium-policies.json -------------------------------------------------------------------------------- /tests/data/libvirt_domain-modified-direct-debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-modified-direct-debug.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-modified-direct-plain-debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-modified-direct-plain-debug.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-modified-direct-plain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-modified-direct-plain.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-modified-direct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-modified-direct.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-modified-html5-debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-modified-html5-debug.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-modified-html5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-modified-html5.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-nospice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-nospice.xml -------------------------------------------------------------------------------- /tests/data/libvirt_domain-orig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/libvirt_domain-orig.xml -------------------------------------------------------------------------------- /tests/data/test.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/data/test.gschema.xml -------------------------------------------------------------------------------- /tests/directorymock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/directorymock.py -------------------------------------------------------------------------------- /tests/fcdbusclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/fcdbusclient.py -------------------------------------------------------------------------------- /tests/freeipamock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/freeipamock.py -------------------------------------------------------------------------------- /tests/ldapmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/ldapmock.py -------------------------------------------------------------------------------- /tests/libvirtmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/libvirtmock.py -------------------------------------------------------------------------------- /tests/python-wrapper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$PYTHON" "$@" -------------------------------------------------------------------------------- /tests/smbmock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/smbmock.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_fcad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_fcad.py -------------------------------------------------------------------------------- /tests/test_fcdbus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_fcdbus.sh -------------------------------------------------------------------------------- /tests/test_fcdbus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_fcdbus_service.py -------------------------------------------------------------------------------- /tests/test_freeipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_freeipa.py -------------------------------------------------------------------------------- /tests/test_libvirt_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_libvirt_controller.py -------------------------------------------------------------------------------- /tests/test_logger_chromium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_logger_chromium.py -------------------------------------------------------------------------------- /tests/test_logger_connmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_logger_connmgr.py -------------------------------------------------------------------------------- /tests/test_logger_dconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_logger_dconf.sh -------------------------------------------------------------------------------- /tests/test_logger_firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_logger_firefox.py -------------------------------------------------------------------------------- /tests/test_logger_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_logger_main.py -------------------------------------------------------------------------------- /tests/test_logger_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_logger_nm.sh -------------------------------------------------------------------------------- /tests/test_mergers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_mergers.py -------------------------------------------------------------------------------- /tests/test_sshcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/test_sshcontroller.py -------------------------------------------------------------------------------- /tests/tools/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/tools/ssh -------------------------------------------------------------------------------- /tests/tools/ssh-keygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/tools/ssh-keygen -------------------------------------------------------------------------------- /tests/tools/ssh-keyscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/tools/ssh-keyscan -------------------------------------------------------------------------------- /tests/tools/ssh-session-mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tests/tools/ssh-session-mock -------------------------------------------------------------------------------- /tools/chrome-prefs-extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tools/chrome-prefs-extract.py -------------------------------------------------------------------------------- /tools/introspect_goa_providers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleet-commander/fc-admin/HEAD/tools/introspect_goa_providers.c --------------------------------------------------------------------------------