Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Sep 2017 08:29:57 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r449176 - in head/net: . ceph ceph-devel ceph/files
Message-ID:  <201709030829.v838TviR076675@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sun Sep  3 08:29:57 2017
New Revision: 449176
URL: https://svnweb.freebsd.org/changeset/ports/449176

Log:
  New port: net/ceph
  
  Ceph is a distributed object store and file system designed to provide
  excellent performance, reliability and scalability.
  
  * Object Storage
    Ceph provides seamless access to objects using native language bindings or
    radosgw, a REST interface for applications written with S3 and Swift.
  * Block Storage
    Ceph's RADOS Block Device (RBD) provides access to block device images
    that are striped and replicated across the entire storage cluster.
  * File System
    Ceph provides a POSIX-compliant network file system aiming for large data
    storage, high performance, and maximum compatibility with legacy applications.
  
  This FreeBSD build will build most of the tools in Ceph:
  * Mon, OSD, rados, RadosGW, rbd
  * init-ceph, and etc/rc.d/ceph on top of that
  * ceph-disk {prepare, activate}
  With these tools one can build a multi server, multi osd cluster fully
  running on FreeBSD and do some testing...
  
  WWW: http://ceph.com
  
  PR:		221997
  Submitted by:	Willem Jan Withagen <wjw@digiware.nl>

Added:
  head/net/ceph/
  head/net/ceph/Makefile   (contents, props changed)
  head/net/ceph/distinfo   (contents, props changed)
  head/net/ceph/files/
  head/net/ceph/files/ceph.in   (contents, props changed)
  head/net/ceph/files/file-git_version   (contents, props changed)
  head/net/ceph/pkg-descr   (contents, props changed)
  head/net/ceph/pkg-plist   (contents, props changed)
Modified:
  head/net/Makefile
  head/net/ceph-devel/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sun Sep  3 07:55:51 2017	(r449175)
+++ head/net/Makefile	Sun Sep  3 08:29:57 2017	(r449176)
@@ -67,6 +67,7 @@
     SUBDIR += c3270
     SUBDIR += cagibi
     SUBDIR += ccxstream
+    SUBDIR += ceph
     SUBDIR += ceph-devel
     SUBDIR += cf
     SUBDIR += chrony

Modified: head/net/ceph-devel/Makefile
==============================================================================
--- head/net/ceph-devel/Makefile	Sun Sep  3 07:55:51 2017	(r449175)
+++ head/net/ceph-devel/Makefile	Sun Sep  3 08:29:57 2017	(r449176)
@@ -12,6 +12,10 @@ COMMENT=Ceph delivers object, block, and file storage 
 LICENSE=	GPLv2 LGPL3
 LICENSE_COMB=	dual
 
+# even though i386 will build, it is not really advised.
+ONLY_FOR_ARCHS=	amd64
+IGNORE_FreeBSD_10=	Doesnt build for FreeBSD 10.x
+
 BUILD_DEPENDS=	\
 	yasm:devel/yasm \
 	pkgconf:devel/pkgconf \
@@ -42,8 +46,9 @@ RUN_DEPENDS=	\
 	flock:sysutils/flock \
 	virtualenv:devel/py-virtualenv
 
-USES=	gmake cmake:outsource,noninja python:2.7 fuse gettext-runtime shebangfix
+CONFLICTS_INSTALL=	ceph
 
+USES=	gmake cmake:outsource,noninja python:2.7 fuse gettext-runtime shebangfix
 USE_GITHUB=	yes
 GH_ACCOUNT=	wjwithagen:DEFAULT
 GH_TUPLE+=	ceph:ceph-erasure-code-corpus:2d7d78b:ceph_erasure_code_corpus/ceph-erasure-code-corpus
@@ -84,10 +89,6 @@ SHEBANG_FILES=src/rbdmap src/ceph-post-file.in src/rbd
 	src/brag/client/ceph-brag src/ceph-rest-api \
 	src/tools/ceph-monstore-update-crush.sh src/mount.fuse.ceph \
 	src/ceph-create-keys
-
-# even though i386 will build, it is not really advised.
-ONLY_FOR_ARCHS=	amd64
-IGNORE_FreeBSD_10=	Doesnt build for FreeBSD 10.x
 
 USE_RC_SUBR=	ceph
 USE_LDCONFIG=	yes

Added: head/net/ceph/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ceph/Makefile	Sun Sep  3 08:29:57 2017	(r449176)
@@ -0,0 +1,140 @@
+# Created by: Willem Jan Withagen <wjw@digiware.nl>
+# $FreeBSD$
+
+PORTNAME=	ceph
+DISTVERSION=	v12.2.0
+CATEGORIES=	net
+
+MAINTAINER=	wjw@digiware.nl
+COMMENT=Ceph delivers object, block, and file storage in a unified system
+
+LICENSE=	GPLv2 LGPL3
+LICENSE_COMB=	dual
+
+# even though i386 will build, it is not really advised.
+ONLY_FOR_ARCHS=	amd64
+IGNORE_FreeBSD_10=	Doesnt build for FreeBSD 10.x
+
+BUILD_DEPENDS=	\
+	yasm:devel/yasm \
+	pkgconf:devel/pkgconf \
+	cython>=0.25.2:lang/cython \
+	sphinx-build:textproc/py-sphinx \
+	gperf:devel/gperf \
+	${LOCALBASE}/lib/libatomic_ops.a:devel/libatomic_ops
+LIB_DEPENDS=	\
+	libboost_python.so:devel/boost-python-libs \
+	libboost_thread.so:devel/boost-libs \
+	libleveldb.so:databases/leveldb \
+	libldap.so:net/openldap24-client \
+	libnss3.so:security/nss \
+	libcryptopp.so:security/cryptopp \
+	libsnappy.so:archivers/snappy \
+	libcurl.so:ftp/curl \
+	libxml2.so:textproc/libxml2 \
+	libexpat.so:textproc/expat2 \
+	liblz4.so:archivers/liblz4 \
+	libplds4.so:devel/nspr \
+	libtcmalloc.so:devel/google-perftools
+RUN_DEPENDS=	\
+	bash:shells/bash \
+	${LOCALBASE}/bin/getopt:misc/getopt \
+	xml:textproc/xmlstarlet \
+	jq:textproc/jq \
+	flock:sysutils/flock \
+	virtualenv:devel/py-virtualenv \
+	${PYTHON_PKGNAMEPREFIX}prettytable>=0:devel/py-prettytable
+
+CONFLICTS_INSTALL=	ceph-devel
+
+USES=	gmake cmake:outsource,noninja python:2.7 fuse gettext-runtime shebangfix
+USE_GITHUB=	yes
+GH_ACCOUNT=	ceph:DEFAULT
+GH_TUPLE+=	ceph:ceph-erasure-code-corpus:2d7d78b:ceph_erasure_code_corpus/ceph-erasure-code-corpus
+GH_TUPLE+=	ceph:ceph-object-corpus:f0ba19f:ceph_object_corpus/ceph-object-corpus
+GH_TUPLE+=	ceph:Beast:d8db5f1:Beast/src/Beast
+GH_TUPLE+=	ceph:civetweb:de23828:civetweb/src/civetweb
+GH_TUPLE+=	01org:isa-l_crypto:603529a:isa_l_crypto/src/crypto/isa-l/isa-l_crypto
+GH_TUPLE+=	ceph:gf-complete:7e61b44:gf_complete/src/erasure-code/jerasure/gf-complete
+GH_TUPLE+=	ceph:jerasure:96c76b8:jerasure/src/erasure-code/jerasure/jerasure
+GH_TUPLE+=	ceph:googletest:fdb8504:googletest/src/googletest
+GH_TUPLE+=	ceph:isa-l:7e1a337:isa_l/src/isa-l
+GH_TUPLE+=	ceph:lua:1fce39c:lua/src/lua
+GH_TUPLE+=	ceph:rapidjson:f54b0e4:rapidjson/src/rapidjson
+GH_TUPLE+=	ceph:rocksdb:e15382c:rocksdb/src/rocksdb
+GH_TUPLE+=	ceph:xxHash:1f40c65:xxHash/src/xxHash
+GH_TUPLE+=	facebook:zstd:dc99312:zstd/src/zstd
+
+CMAKE_BUILD_TYPE=	Release
+CMAKE_ARGS=	\
+	-D WITH_SYSTEM_BOOST:BOOL=ON \
+	-D CEPH_MAN_DIR:STRING=man \
+	-D WITH_LTTNG:BOOL=OFF \
+	-D WITH_FUSE:BOOL=ON \
+	-D WITH_KRBD:BOOL=OFF \
+	-D WITH_XFS:BOOL=OFF \
+	-D WITH_KVS:BOOL=OFF \
+	-D WITH_BABELTRACE:BOOL=OFF \
+	-D HAVE_BABELTRACE:BOOL=OFF \
+	-D WITH_LIBCEPHFS:BOOL=OFF \
+	-D WITH_CEPHFS:BOOL=OFF \
+	-D WITH_EMBEDDED:BOOL=OFF
+
+SHEBANG_FILES=src/rbdmap src/ceph-post-file.in src/rbd-replay-many \
+	src/brag/client/ceph-brag src/ceph-rest-api \
+	src/tools/ceph-monstore-update-crush.sh src/mount.fuse.ceph \
+	src/ceph-create-keys
+
+USE_RC_SUBR=	ceph
+USE_LDCONFIG=	yes
+
+USERS=		ceph
+GROUPS=		ceph
+
+pre-configure:
+	${LN} -s ${CONFIGURE_WRKSRC} ${WRKSRC}/build
+	${CP} files/file-git_version ${WRKSRC}/src/.git_version
+
+post-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/etc/ceph
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/bootstrap-mds
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/bootstrap-osd
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/bootstrap-rgw
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/bootstrap-mgr
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/mds
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/mon
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/osd
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/mgr
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/tmp
+	${MKDIR} ${STAGEDIR}/var/lib/ceph/radosgw
+	${MKDIR} ${STAGEDIR}/var/log/ceph
+	${MKDIR} ${STAGEDIR}/var/run/ceph
+	# Use the Ceph init.d script as the interface to regular
+	# starting and stopping deamons. rc.d work is done thru
+	# a separate rc.d/ceph script calling init-ceph again.
+	${MV} ${STAGEDIR}${PREFIX}/etc/init.d/ceph ${STAGEDIR}${PREFIX}/bin/init-ceph
+	# remove files not packaged
+	${RM} ${STAGEDIR}${DOCSDIR}/sample.fetch_config
+	${RM} ${STAGEDIR}${DOCSDIR}/sample.ceph.conf
+	${RMDIR} ${STAGEDIR}${DOCSDIR}
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_bench_log
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_multi_stress_watch
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_perf*
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_psim
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_scratchtoolpp
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_smalliobench*
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_test*
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_tpbench
+	${RM} ${STAGEDIR}${PREFIX}/bin/ceph_xattr_bench
+	${RM} ${STAGEDIR}${PREFIX}/sbin/ceph-disk-udev
+	# ceph-volume does not support ZFS
+	${RM} -rf ${STAGEDIR}${PYTHON_SITELIBDIR}/ceph_volume-*
+	${RM} -rf ${STAGEDIR}${PYTHON_SITELIBDIR}/ceph_volume/
+	${RM} ${STAGEDIR}${PREFIX}/sbin/ceph-volume
+	${RM} ${STAGEDIR}${PREFIX}/sbin/ceph-volume-systemd
+	${RM} ${STAGEDIR}${PREFIX}/man/man8/ceph-volume*
+
+	${RMDIR} ${STAGEDIR}${PREFIX}/etc/init.d
+	${INSTALL_DATA} ${WRKSRC}/src/sample.ceph.conf ${STAGEDIR}${PREFIX}/etc/ceph/ceph.conf.sample
+
+.include <bsd.port.mk>

Added: head/net/ceph/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ceph/distinfo	Sun Sep  3 08:29:57 2017	(r449176)
@@ -0,0 +1,31 @@
+TIMESTAMP = 1504214691
+SHA256 (ceph-ceph-v12.2.0_GH0.tar.gz) = f664e3fe1258b7369acee71569177c6c2b05c0c2291c2d59f77bd281bec169e5
+SIZE (ceph-ceph-v12.2.0_GH0.tar.gz) = 16953050
+SHA256 (ceph-ceph-erasure-code-corpus-2d7d78b_GH0.tar.gz) = 466f7185015df8d13f8b2b9a17ee30ab419bcd667284ce2b6d32a1128c4640f1
+SIZE (ceph-ceph-erasure-code-corpus-2d7d78b_GH0.tar.gz) = 3634266
+SHA256 (ceph-ceph-object-corpus-f0ba19f_GH0.tar.gz) = 90e4052c6dca0e272bdca492216e62fdc0d19719e121451798295799bdf95499
+SIZE (ceph-ceph-object-corpus-f0ba19f_GH0.tar.gz) = 1837935
+SHA256 (ceph-Beast-d8db5f1_GH0.tar.gz) = a0dda7ee9abdef7f6e2a3f178e85dbfa7ebc8ce428ccc6cd0ac76883f406808b
+SIZE (ceph-Beast-d8db5f1_GH0.tar.gz) = 17823430
+SHA256 (ceph-civetweb-de23828_GH0.tar.gz) = a9a95dd58e9b4a696fa0c822c1401856c55ef9b67fb28cf15d97f19f1af2ecbd
+SIZE (ceph-civetweb-de23828_GH0.tar.gz) = 6850197
+SHA256 (01org-isa-l_crypto-603529a_GH0.tar.gz) = 52708b98c832bb7e6db60c949ece261d9609c822ae55239b0f2133cec2b3d155
+SIZE (01org-isa-l_crypto-603529a_GH0.tar.gz) = 439149
+SHA256 (ceph-gf-complete-7e61b44_GH0.tar.gz) = 7b0e5c1b41399d2c7d97ed7a7547ebf40023bcd104ed9a8b2b75bdee440c1a4d
+SIZE (ceph-gf-complete-7e61b44_GH0.tar.gz) = 342303
+SHA256 (ceph-jerasure-96c76b8_GH0.tar.gz) = 06edaeb8cb5c3076e34cb53dd91c91d54d46fb8c3b837c6280ea2ed076556beb
+SIZE (ceph-jerasure-96c76b8_GH0.tar.gz) = 806334
+SHA256 (ceph-googletest-fdb8504_GH0.tar.gz) = ece3265dae4d0fe5a52e7164432bb416de8bdb45e1c8cf8f361bbe893db30bb8
+SIZE (ceph-googletest-fdb8504_GH0.tar.gz) = 1281068
+SHA256 (ceph-isa-l-7e1a337_GH0.tar.gz) = 8099bc6ca3ca6ed9376f6cc5072a84d7a1863e2d7f2344bf08682d4efb7ae788
+SIZE (ceph-isa-l-7e1a337_GH0.tar.gz) = 458398
+SHA256 (ceph-lua-1fce39c_GH0.tar.gz) = fb5f778ce4da349ca903512a2fdb3987b12e3f0a52ab088fb011a8e4dd55848c
+SIZE (ceph-lua-1fce39c_GH0.tar.gz) = 366778
+SHA256 (ceph-rapidjson-f54b0e4_GH0.tar.gz) = 35c330d40ed9def99e8dea8f3b0e4fda7610b813b6f4aac9a70ffefcb9ab1f1e
+SIZE (ceph-rapidjson-f54b0e4_GH0.tar.gz) = 1019457
+SHA256 (ceph-rocksdb-e15382c_GH0.tar.gz) = e23177dd893b81b4d3d959464ee8e5c4fe64a408841c2584b29540c60ac5cf47
+SIZE (ceph-rocksdb-e15382c_GH0.tar.gz) = 3278113
+SHA256 (ceph-xxHash-1f40c65_GH0.tar.gz) = 809e06b7493ed01f13c7ba972393a5a6d23dd92fd6b884381aa907005e569372
+SIZE (ceph-xxHash-1f40c65_GH0.tar.gz) = 25484
+SHA256 (facebook-zstd-dc99312_GH0.tar.gz) = e10abc649b2708ad9112e138001a9c88eed05cae35e1139f5b96a51a549cf724
+SIZE (facebook-zstd-dc99312_GH0.tar.gz) = 769078

Added: head/net/ceph/files/ceph.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ceph/files/ceph.in	Sun Sep  3 08:29:57 2017	(r449176)
@@ -0,0 +1,36 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: ceph
+# REQUIRE: LOGIN
+# BEFORE:  securelevel
+# KEYWORD: shutdown
+
+# Add the following lines to /etc/rc.conf to enable `ceph':
+#
+# ceph_enable="YES"
+#
+
+. /etc/rc.subr
+
+PATH=$PATH:%%PREFIX%%/bin:%%PREFIX%%/sbin
+
+name="ceph"
+rcvar=${name}_enable
+extra_commands="condrestart"
+
+load_rc_config ${name}
+
+# read configuration and set defaults
+: ${ceph_enable="NO"}
+: ${ceph_configfile:=%%PREFIX%%/etc/ceph/ceph.conf}
+
+start_cmd="%%PREFIX%%/bin/init-ceph $*"
+stop_cmd="%%PREFIX%%/bin/init-ceph $*"
+restart_cmd="%%PREFIX%%/bin/init-ceph $*"
+condrestart_cmd="%%PREFIX%%/bin/init-ceph $*"
+
+run_rc_command "$1" 
+

Added: head/net/ceph/files/file-git_version
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ceph/files/file-git_version	Sun Sep  3 08:29:57 2017	(r449176)
@@ -0,0 +1,2 @@
+bcf89707d6c3c3086f001d08c754095b9e7a85f1
+v12.2.0-6-gbcf89707d6

Added: head/net/ceph/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ceph/pkg-descr	Sun Sep  3 08:29:57 2017	(r449176)
@@ -0,0 +1,21 @@
+Ceph is a distributed object store and file system designed to provide
+excellent performance, reliability and scalability.
+
+* Object Storage
+  Ceph provides seamless access to objects using native language bindings or 
+  radosgw, a REST interface for applications written with S3 and Swift.
+* Block Storage
+  Ceph's RADOS Block Device (RBD) provides access to block device images
+  that are striped and replicated across the entire storage cluster.
+* File System
+  Ceph provides a POSIX-compliant network file system aiming for large data
+  storage, high performance, and maximum compatibility with legacy applications.
+
+This FreeBSD build will build most of the tools in Ceph:
+* Mon, OSD, rados, RadosGW, rbd
+* init-ceph, and etc/rc.d/ceph on top of that
+* ceph-disk {prepare, activate}
+With these tools one can build a multi server, multi osd cluster fully 
+running on FreeBSD and do some testing...
+
+WWW: http://ceph.com

Added: head/net/ceph/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ceph/pkg-plist	Sun Sep  3 08:29:57 2017	(r449176)
@@ -0,0 +1,1371 @@
+bin/ceph
+bin/ceph-authtool
+bin/ceph-brag
+bin/ceph-clsinfo
+bin/ceph-conf
+bin/ceph-coverage
+bin/ceph-crush-location
+bin/ceph-debugpack
+bin/ceph-dencoder
+bin/ceph-detect-init
+bin/ceph-fuse
+bin/ceph-kvstore-tool
+bin/ceph-mds
+bin/ceph-mgr
+bin/ceph-mon
+bin/ceph-monstore-tool
+bin/ceph-objectstore-tool
+bin/ceph-osd
+bin/ceph-osdomap-tool
+bin/ceph-post-file
+bin/ceph-rbdnamer
+bin/ceph-rest-api
+bin/ceph-run
+bin/ceph_erasure_code
+bin/ceph_erasure_code_benchmark
+bin/ceph_objectstore_bench
+bin/ceph_omapbench
+bin/ceph_radosacl
+bin/ceph_rgw_jsonparser
+bin/ceph_rgw_multiparser
+bin/ceph_scratchtool
+bin/crushtool
+bin/init-ceph
+bin/librados-config
+bin/monmaptool
+bin/osdmaptool
+bin/rados
+bin/radosgw
+bin/radosgw-admin
+bin/radosgw-es
+bin/radosgw-object-expirer
+bin/radosgw-token
+bin/rbd
+bin/rbd-fuse
+bin/rbd-ggate
+bin/rbd-mirror
+bin/rbd-replay
+bin/rbd-replay-many
+bin/rbdmap
+etc/bash_completion.d/ceph
+etc/bash_completion.d/rados
+etc/bash_completion.d/radosgw-admin
+etc/bash_completion.d/rbd
+%%ETCDIR%%/ceph.conf.sample
+include/rados/buffer.h
+include/rados/buffer_fwd.h
+include/rados/crc32c.h
+include/rados/inline_memory.h
+include/rados/librados.h
+include/rados/librados.hpp
+include/rados/librgw.h
+include/rados/memory.h
+include/rados/objclass.h
+include/rados/page.h
+include/rados/rados_types.h
+include/rados/rados_types.hpp
+include/rados/rgw_file.h
+include/radosstriper/libradosstriper.h
+include/radosstriper/libradosstriper.hpp
+include/rbd/features.h
+include/rbd/librbd.h
+include/rbd/librbd.hpp
+lib/ceph/ceph-monstore-update-crush.sh
+lib/ceph/compressor/libceph_snappy.so
+lib/ceph/compressor/libceph_snappy.so.2
+lib/ceph/compressor/libceph_snappy.so.2.0.0
+lib/ceph/compressor/libceph_zlib.so
+lib/ceph/compressor/libceph_zlib.so.2
+lib/ceph/compressor/libceph_zlib.so.2.0.0
+lib/ceph/compressor/libceph_zstd.so
+lib/ceph/compressor/libceph_zstd.so.2
+lib/ceph/compressor/libceph_zstd.so.2.0.0
+lib/ceph/crypto/libceph_crypto_isal.so
+lib/ceph/crypto/libceph_crypto_isal.so.1
+lib/ceph/crypto/libceph_crypto_isal.so.1.0.0
+lib/ceph/erasure-code/libec_isa.so
+lib/ceph/erasure-code/libec_jerasure.so
+lib/ceph/erasure-code/libec_jerasure_generic.so
+lib/ceph/erasure-code/libec_jerasure_sse3.so
+lib/ceph/erasure-code/libec_jerasure_sse4.so
+lib/ceph/erasure-code/libec_lrc.so
+lib/ceph/erasure-code/libec_shec.so
+lib/ceph/erasure-code/libec_shec_generic.so
+lib/ceph/erasure-code/libec_shec_sse3.so
+lib/ceph/erasure-code/libec_shec_sse4.so
+lib/ceph/libceph-common.so
+lib/ceph/libceph-common.so.0
+lib/ceph/mgr/mgr_module.py
+lib/ceph/mgr/dashboard/__init__.py
+lib/ceph/mgr/dashboard/cephfs_clients.py
+lib/ceph/mgr/dashboard/servers.html
+lib/ceph/mgr/dashboard/remote_view_cache.py
+lib/ceph/mgr/dashboard/base.html
+lib/ceph/mgr/dashboard/rbd_ls.py
+lib/ceph/mgr/dashboard/clients.html
+lib/ceph/mgr/dashboard/health.html
+lib/ceph/mgr/dashboard/osd_perf.html
+lib/ceph/mgr/dashboard/osds.html
+lib/ceph/mgr/dashboard/module.py
+lib/ceph/mgr/dashboard/rbd_iscsi.html
+lib/ceph/mgr/dashboard/rbd_iscsi.py
+lib/ceph/mgr/dashboard/rbd_mirroring.html
+lib/ceph/mgr/dashboard/rbd_mirroring.py
+lib/ceph/mgr/dashboard/rbd_pool.html
+lib/ceph/mgr/dashboard/static/favicon.ico
+lib/ceph/mgr/dashboard/static/logo-mini.png
+lib/ceph/mgr/dashboard/static/underscore-min.js
+lib/ceph/mgr/dashboard/static/rivets.bundled.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/starter.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/js/demo.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/js/app.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/js/app.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/js/pages/dashboard2.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/js/pages/dashboard.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user7-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user8-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user2-160x160.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user5-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/avatar3.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/avatar04.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/photo3.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/photo4.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/boxed-bg.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/avatar.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user3-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/default-50x50.gif
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/photo1.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user1-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/avatar2.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/avatar5.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/icons.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/photo2.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/mastercard.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/visa.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/american-express.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/mestro.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/paypal2.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/paypal.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/credit/cirrus.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/boxed-bg.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user6-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/img/user4-128x128.jpg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-blue-light.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/_all-skins.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-purple.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-red.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-yellow.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-black.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-blue.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-purple.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-black-light.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-green.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-blue.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-black.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-yellow-light.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-red-light.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-blue-light.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-purple-light.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-yellow.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-green.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-red.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-green-light.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-green-light.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-purple-light.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/_all-skins.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-red-light.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-black-light.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/skins/skin-yellow-light.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/AdminLTE.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/dist/css/AdminLTE.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/Gruntfile.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/changelog.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/layout/fixed.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/layout/boxed.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/layout/collapsed-sidebar.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/layout/top-nav.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/forms/advanced.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/forms/editors.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/forms/general.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/charts/morris.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/charts/inline.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/charts/chartjs.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/charts/flot.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/UI/buttons.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/UI/sliders.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/UI/general.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/UI/icons.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/UI/timeline.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/UI/modals.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/404.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/profile.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/register.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/invoice-print.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/invoice.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/blank.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/login.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/pace.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/500.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/examples/lockscreen.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/mailbox/read-mail.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/mailbox/compose.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/mailbox/mailbox.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/widgets.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/calendar.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/tables/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/pages/tables/data.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/fonts/glyphicons-halflings-regular.woff2
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/fonts/glyphicons-halflings-regular.ttf
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/fonts/glyphicons-halflings-regular.woff
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/fonts/glyphicons-halflings-regular.eot
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/fonts/glyphicons-halflings-regular.svg
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/css/bootstrap.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/css/bootstrap.css.map
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/css/bootstrap.min.css.map
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/css/bootstrap.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/js/bootstrap.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/js/bootstrap.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/bootstrap/js/npm.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/LICENSE
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/timepicker/bootstrap-timepicker.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/timepicker/bootstrap-timepicker.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/timepicker/bootstrap-timepicker.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/timepicker/bootstrap-timepicker.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/jquery.dataTables.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/dataTables.bootstrap.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/js/dataTables.tableTools.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/js/dataTables.tableTools.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/select_multi.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/collection.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/select_os.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/defaults.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/plug-in.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/bootstrap.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/multiple_tables.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/pdf_message.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/ajax.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/alter_buttons.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/button_text.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/multi_instance.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/new_init.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/select_column.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/select_single.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/jqueryui.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/swf_path.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/pdf.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/print.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/copy.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/xls_hover.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/print_hover.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/collection_hover.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/pdf_hover.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/collection.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/csv.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/xls.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/csv_hover.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/psd/file_types.psd
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/psd/copy document.psd
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/psd/printer.psd
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/psd/collection.psd
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/images/copy_hover.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/TableTools/Readme.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/js/dataTables.fixedColumns.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/js/dataTables.fixedColumns.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/size_fixed.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/bootstrap.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/col_filter.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/server-side-processing.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/two_columns.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/size_fluid.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/colvis.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/index_column.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/left_right_columns.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/css_size.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/right_column.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/examples/rowspan.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/Readme.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedColumns/License.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/images/filler.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/fill-horizontal.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/complete-callback.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/step-callback.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/fill-both.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/scrolling.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/examples/columns.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/js/dataTables.autoFill.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/js/dataTables.autoFill.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/AutoFill/Readme.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/Readme.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/examples/scrolling.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/examples/events.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/examples/html.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/js/dataTables.keyTable.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/KeyTable/js/dataTables.keyTable.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/Readme.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/js/dataTables.colVis.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/js/dataTables.colVis.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/css/dataTables.colVis.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/css/dataTables.colVis.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/License.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/jqueryui.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/new_init.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/two_tables_identical.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/button_order.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/group_columns.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/exclude_columns.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/restore.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/mouseover.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/title_callback.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/text.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/two_tables.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColVis/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/Readme.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/js/dataTables.fixedHeader.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/js/dataTables.fixedHeader.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/examples/top_left_right.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/examples/header_footer.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/examples/zIndexes.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/examples/two_tables.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/FixedHeader/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/css/dataTables.scroller.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/js/dataTables.scroller.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/js/dataTables.scroller.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/Readme.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/data/ssp.php
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/data/2500.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/large_js_source.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/api_scrolling.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/state_saving.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/server-side_processing.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Scroller/images/loading-background.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/initialisation/new.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/initialisation/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/initialisation/ajax.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/initialisation/className.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/initialisation/option.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/initialisation/default.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/styling/scrolling.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/styling/compact.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/styling/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/styling/foundation.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/styling/bootstrap.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/child-rows/disable-child-rows.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/child-rows/column-control.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/child-rows/right-column.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/child-rows/custom-renderer.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/child-rows/whole-row-control.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/child-rows/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/fixedHeader.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/complexHeader.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/init-classes.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/classes.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/examples/display-control/auto.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/License.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/Readme.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/js/dataTables.responsive.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/css/dataTables.responsive.scss
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/Responsive/css/dataTables.responsive.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/scrolling.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/simple.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/fixedheader.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/jqueryui.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/fixedcolumns.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/predefined.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/new_init.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/index.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/reset.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/alt_insert.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/col_filter.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/realtime.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/state_save.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/colvis.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/examples/server_side.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/js/dataTables.colReorder.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/js/dataTables.colReorder.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/License.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/Readme.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/images/insert.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/images/sort_asc.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/images/sort_asc_disabled.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/images/sort_desc.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/images/sort_desc_disabled.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/images/sort_both.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/jquery.dataTables.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/jquery.dataTables_themeroller.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/dataTables.bootstrap.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/jquery.dataTables.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/dataTables.bootstrap.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datatables/jquery.dataTables.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/morris/morris.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/morris/morris.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/morris/morris.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fastclick/fastclick.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fastclick/fastclick.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/jquery.inputmask.numeric.extensions.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/jquery.inputmask.date.extensions.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/jquery.inputmask.regex.extensions.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/jquery.inputmask.phone.extensions.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/jquery.inputmask.extensions.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/phone-codes/readme.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/phone-codes/phone-codes.json
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/phone-codes/phone-be.json
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/input-mask/jquery.inputmask.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jvectormap/jquery-jvectormap-1.2.2.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jvectormap/jquery-jvectormap-world-mill-en.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jvectormap/jquery-jvectormap-usa-en.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jQuery/jquery-2.2.3.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/en.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/pt-BR.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ko.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/vi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/sr-Cyrl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/sr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/he.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/tr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/nb.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/km.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/pl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ru.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/it.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/fr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ar.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/el.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/hr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/mk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/sv.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/fa.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/id.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/hu.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/is.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/gl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/eu.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/pt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/nl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/lt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/cs.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/de.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/et.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ms.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/sk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/zh-CN.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/lv.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/zh-TW.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ro.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/fi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/hi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/th.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/uk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/es.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/az.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/da.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ca.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/ja.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/i18n/bg.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/select2.full.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/select2.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/select2.full.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/select2.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/select2.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/select2/select2.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/pace/pace.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/pace/pace.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/pace/pace.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/pace/pace.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.id.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.rs.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.kk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.hu.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.is.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.cy.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.sw.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.sv.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.fa.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.he.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.tr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.pl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.nb.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.it.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ru.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.fr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ar.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.el.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.hr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.mk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.sq.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ua.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.vi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.da.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ca.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ja.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.bg.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.es.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.sl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.kr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.az.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.lv.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.no.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ka.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.fi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ro.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.th.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.gl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.nl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.pt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.lt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.cs.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.de.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.et.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.sk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/locales/bootstrap-datepicker.ms.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/datepicker3.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/datepicker/bootstrap-datepicker.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jQueryUI/jquery-ui.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/jQueryUI/jquery-ui.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/chartjs/Chart.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/chartjs/Chart.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/bootstrap-slider/bootstrap-slider.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/bootstrap-slider/slider.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/slimScroll/jquery.slimscroll.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/slimScroll/jquery.slimscroll.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/knob/jquery.knob.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ionslider/img/sprite-skin-nice.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ionslider/img/sprite-skin-flat.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ionslider/ion.rangeSlider.skinNice.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ionslider/ion.rangeSlider.skinFlat.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ionslider/ion.rangeSlider.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ionslider/ion.rangeSlider.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/daterangepicker/moment.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/daterangepicker/moment.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/daterangepicker/daterangepicker.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/daterangepicker/daterangepicker.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.crosshair.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.categories.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.errorbars.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.navigate.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.symbol.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.resize.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/excanvas.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.stack.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.crosshair.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.fillbetween.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.canvas.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.time.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.threshold.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.image.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.image.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.symbol.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.stack.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.threshold.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.fillbetween.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.colorhelpers.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.canvas.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.errorbars.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.pie.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.categories.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.selection.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.resize.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.time.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.selection.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.pie.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/excanvas.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.colorhelpers.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/flot/jquery.flot.navigate.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fullcalendar/fullcalendar.min.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fullcalendar/fullcalendar.print.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fullcalendar/fullcalendar.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fullcalendar/fullcalendar.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/fullcalendar/fullcalendar.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/sparkline/jquery.sparkline.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/sparkline/jquery.sparkline.min.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/adapters/jquery.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/config.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/image/dialogs/image.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/image/images/noimage.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/icons.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/dialog/dialogDefinition.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/tabletools/dialogs/tableCell.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/about/dialogs/about.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/magicline/images/icon.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/magicline/images/icon-rtl.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/pastefromword/filter/default.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/table/dialogs/table.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/scayt/dialogs/options.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/scayt/README.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/scayt/CHANGELOG.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/scayt/LICENSE.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/dialogs/wsc.css
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/dialogs/ciframe.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/dialogs/wsc_ie.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/dialogs/wsc.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/LICENSE.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/wsc/README.md
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/clipboard/dialogs/paste.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/link/images/hidpi/anchor.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/link/images/anchor.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/link/dialogs/link.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/link/dialogs/anchor.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/icons_hidpi.png
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/sl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/es.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/uk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/ja.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/ca.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/da.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/bg.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/nl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/ku.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/eu.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/gl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/sk.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/et.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/de.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/lt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/cs.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/no.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/lv.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/si.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/th.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/fi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/cy.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/ug.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/fa.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/sv.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/hu.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/tt.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/id.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/af.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/sq.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/en.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/eo.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/vi.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/ko.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/ru.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/it.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/nb.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/km.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/pl.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/tr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/he.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/hr.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/el.js
+lib/ceph/mgr/dashboard/static/AdminLTE-2.3.7/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709030829.v838TviR076675>