debian/control: add missing "," 499/head
authorKefu Chai <tchaikov@gmail.com>
Fri, 5 Jun 2020 11:35:04 +0000 (19:35 +0800)
committerKefu Chai <tchaikov@gmail.com>
Fri, 5 Jun 2020 11:35:04 +0000 (19:35 +0800)
commita6a62138409a5558f2072ca74bd2b689b312fe20
treeae21cc8bf42843d5bda9ce6d3413683ad828c091
debian/control: add missing ","

Signed-off-by: Kefu Chai <tchaikov@gmail.com>
180 files changed:
.gitignore [new file with mode: 0644]
CONTRIBUTING.rst [new file with mode: 0644]
LICENSE [new file with mode: 0644]
MANIFEST.in [new file with mode: 0644]
README.rst [new file with mode: 0644]
bootstrap [new file with mode: 0755]
ceph-deploy.spec [new file with mode: 0644]
ceph_deploy/__init__.py [new file with mode: 0644]
ceph_deploy/admin.py [new file with mode: 0644]
ceph_deploy/cli.py [new file with mode: 0644]
ceph_deploy/cliutil.py [new file with mode: 0644]
ceph_deploy/conf/__init__.py [new file with mode: 0644]
ceph_deploy/conf/ceph.py [new file with mode: 0644]
ceph_deploy/conf/cephdeploy.py [new file with mode: 0644]
ceph_deploy/config.py [new file with mode: 0644]
ceph_deploy/connection.py [new file with mode: 0644]
ceph_deploy/exc.py [new file with mode: 0644]
ceph_deploy/forgetkeys.py [new file with mode: 0644]
ceph_deploy/gatherkeys.py [new file with mode: 0644]
ceph_deploy/hosts/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/alt/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/alt/install.py [new file with mode: 0644]
ceph_deploy/hosts/alt/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/alt/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/arch/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/arch/install.py [new file with mode: 0644]
ceph_deploy/hosts/arch/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/arch/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/centos/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/centos/install.py [new file with mode: 0644]
ceph_deploy/hosts/centos/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/centos/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/common.py [new file with mode: 0644]
ceph_deploy/hosts/debian/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/debian/install.py [new file with mode: 0644]
ceph_deploy/hosts/debian/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/debian/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/fedora/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/fedora/install.py [new file with mode: 0644]
ceph_deploy/hosts/fedora/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/fedora/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/remotes.py [new file with mode: 0644]
ceph_deploy/hosts/rhel/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/rhel/install.py [new file with mode: 0644]
ceph_deploy/hosts/rhel/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/rhel/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/suse/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/suse/install.py [new file with mode: 0644]
ceph_deploy/hosts/suse/mon/__init__.py [new file with mode: 0644]
ceph_deploy/hosts/suse/uninstall.py [new file with mode: 0644]
ceph_deploy/hosts/util.py [new file with mode: 0644]
ceph_deploy/install.py [new file with mode: 0644]
ceph_deploy/lib/__init__.py [new file with mode: 0644]
ceph_deploy/lib/vendor/__init__.py [new file with mode: 0644]
ceph_deploy/mds.py [new file with mode: 0644]
ceph_deploy/mgr.py [new file with mode: 0644]
ceph_deploy/misc.py [new file with mode: 0644]
ceph_deploy/mon.py [new file with mode: 0644]
ceph_deploy/new.py [new file with mode: 0644]
ceph_deploy/osd.py [new file with mode: 0644]
ceph_deploy/pkg.py [new file with mode: 0644]
ceph_deploy/repo.py [new file with mode: 0644]
ceph_deploy/rgw.py [new file with mode: 0644]
ceph_deploy/tests/__init__.py [new file with mode: 0644]
ceph_deploy/tests/conftest.py [new file with mode: 0644]
ceph_deploy/tests/directory.py [new file with mode: 0644]
ceph_deploy/tests/fakes.py [new file with mode: 0644]
ceph_deploy/tests/parser/__init__.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_admin.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_config.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_disk.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_gatherkeys.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_install.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_main.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_mds.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_mon.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_new.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_osd.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_pkg.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_purge.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_purgedata.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_repo.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_rgw.py [new file with mode: 0644]
ceph_deploy/tests/parser/test_uninstall.py [new file with mode: 0644]
ceph_deploy/tests/test_cli_admin.py [new file with mode: 0644]
ceph_deploy/tests/test_cli_mon.py [new file with mode: 0644]
ceph_deploy/tests/test_cli_new.py [new file with mode: 0644]
ceph_deploy/tests/test_cli_rgw.py [new file with mode: 0644]
ceph_deploy/tests/test_conf.py [new file with mode: 0644]
ceph_deploy/tests/test_gather_keys.py [new file with mode: 0644]
ceph_deploy/tests/test_gather_keys_missing.py [new file with mode: 0644]
ceph_deploy/tests/test_gather_keys_with_mon.py [new file with mode: 0644]
ceph_deploy/tests/test_install.py [new file with mode: 0644]
ceph_deploy/tests/test_keys_equivalent.py [new file with mode: 0644]
ceph_deploy/tests/test_mon.py [new file with mode: 0644]
ceph_deploy/tests/test_remotes.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_altlinux.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_centos.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_common.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_hosts.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_remotes.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_suse.py [new file with mode: 0644]
ceph_deploy/tests/unit/hosts/test_util.py [new file with mode: 0644]
ceph_deploy/tests/unit/test_cli.py [new file with mode: 0644]
ceph_deploy/tests/unit/test_conf.py [new file with mode: 0644]
ceph_deploy/tests/unit/test_exc.py [new file with mode: 0644]
ceph_deploy/tests/unit/test_mon.py [new file with mode: 0644]
ceph_deploy/tests/unit/test_new.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_arg_validators.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_constants.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_net.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_packages.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_paths.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_pkg_managers.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_system.py [new file with mode: 0644]
ceph_deploy/tests/unit/util/test_templates.py [new file with mode: 0644]
ceph_deploy/tests/util.py [new file with mode: 0644]
ceph_deploy/util/__init__.py [new file with mode: 0644]
ceph_deploy/util/arg_validators.py [new file with mode: 0644]
ceph_deploy/util/constants.py [new file with mode: 0644]
ceph_deploy/util/decorators.py [new file with mode: 0644]
ceph_deploy/util/files.py [new file with mode: 0644]
ceph_deploy/util/help_formatters.py [new file with mode: 0644]
ceph_deploy/util/log.py [new file with mode: 0644]
ceph_deploy/util/net.py [new file with mode: 0644]
ceph_deploy/util/packages.py [new file with mode: 0644]
ceph_deploy/util/paths/__init__.py [new file with mode: 0644]
ceph_deploy/util/paths/gpg.py [new file with mode: 0644]
ceph_deploy/util/paths/mon.py [new file with mode: 0644]
ceph_deploy/util/paths/osd.py [new file with mode: 0644]
ceph_deploy/util/pkg_managers.py [new file with mode: 0644]
ceph_deploy/util/ssh.py [new file with mode: 0644]
ceph_deploy/util/system.py [new file with mode: 0644]
ceph_deploy/util/templates.py [new file with mode: 0644]
ceph_deploy/util/versions.py [new file with mode: 0644]
ceph_deploy/validate.py [new file with mode: 0644]
debian/ceph-deploy.install [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]
docs/Makefile [new file with mode: 0644]
docs/source/_static/.empty [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Book.eot [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Book.svg [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Book.ttf [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Book.woff [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Medium.eot [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Medium.svg [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Medium.ttf [new file with mode: 0644]
docs/source/_themes/ceph/static/font/ApexSans-Medium.woff [new file with mode: 0644]
docs/source/_themes/ceph/static/nature.css_t [new file with mode: 0644]
docs/source/_themes/ceph/theme.conf [new file with mode: 0644]
docs/source/admin.rst [new file with mode: 0644]
docs/source/changelog.rst [new file with mode: 0644]
docs/source/conf.py [new file with mode: 0644]
docs/source/conf.rst [new file with mode: 0644]
docs/source/contents.rst [new file with mode: 0644]
docs/source/gatherkeys.rst [new file with mode: 0644]
docs/source/index.rst [new file with mode: 0644]
docs/source/install.rst [new file with mode: 0644]
docs/source/mds.rst [new file with mode: 0644]
docs/source/mon.rst [new file with mode: 0644]
docs/source/new.rst [new file with mode: 0644]
docs/source/pkg.rst [new file with mode: 0644]
docs/source/repo.rst [new file with mode: 0644]
docs/source/rgw.rst [new file with mode: 0644]
requirements-dev.txt [new file with mode: 0644]
requirements.txt [new file with mode: 0644]
scripts/build-debian.sh [new file with mode: 0755]
scripts/build-rpm.sh [new file with mode: 0755]
scripts/ceph-deploy [new file with mode: 0755]
scripts/jenkins-build [new file with mode: 0755]
scripts/jenkins-pull-requests-build [new file with mode: 0644]
setup.cfg [new file with mode: 0644]
setup.py [new file with mode: 0644]
tox.ini [new file with mode: 0644]
vendor.py [new file with mode: 0644]