Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/5cfcf9ec43d70457aa1c08b1d86e6a07 to your computer and use it in GitHub Desktop.
Save r-ryantm/5cfcf9ec43d70457aa1c08b1d86e6a07 to your computer and use it in GitHub Desktop.
/nix/store/kxpwhj9x6pdjji18xk5y7qc7gcl22q7i-ceph-14.2.9
├── bin
│   ├── ceph
│   ├── ceph-authtool
│   ├── ceph-bluestore-tool
│   ├── ceph-clsinfo
│   ├── ceph-conf
│   ├── ceph-crash
│   ├── ceph-create-keys
│   ├── ceph-dencoder
│   ├── cephfs-data-scan
│   ├── cephfs-journal-tool
│   ├── cephfs-table-tool
│   ├── ceph-fuse
│   ├── ceph-kvstore-tool
│   ├── ceph-mds
│   ├── ceph-mgr
│   ├── ceph-mon
│   ├── ceph-monstore-tool
│   ├── ceph-objectstore-tool
│   ├── ceph-osd
│   ├── ceph-osdomap-tool
│   ├── ceph-post-file
│   ├── ceph-rbdnamer
│   ├── ceph-run
│   ├── ceph-syn
│   ├── ceph-volume
│   ├── ceph-volume-systemd
│   ├── crushtool
│   ├── librados-config
│   ├── monmaptool
│   ├── mount.ceph
│   ├── mount.fuse.ceph
│   ├── osdmaptool
│   ├── rados
│   ├── radosgw
│   ├── radosgw-admin
│   ├── radosgw-es
│   ├── radosgw-object-expirer
│   ├── radosgw-token
│   ├── rbd
│   ├── rbd-fuse
│   ├── rbdmap
│   ├── rbd-mirror
│   ├── rbd-nbd
│   ├── rbd-replay
│   ├── rbd-replay-many
│   └── rbd-replay-prep
├── etc
│   ├── bash_completion.d
│   │   ├── ceph
│   │   ├── rados
│   │   ├── radosgw-admin
│   │   └── rbd
│   └── init.d
│   └── ceph
├── lib
│   └── python3.7
│   └── site-packages
│   ├── ceph_argparse.py
│   ├── ceph_daemon.py
│   ├── cephfs-2.0.0-py3.7.egg-info
│   │   ├── dependency_links.txt
│   │   ├── PKG-INFO
│   │   ├── SOURCES.txt
│   │   └── top_level.txt
│   ├── cephfs.cpython-37m-x86_64-linux-gnu.so
│   ├── ceph_volume-1.0.0-py3.7.egg
│   │   ├── ceph_volume
│   │   │   ├── api
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lvm.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── lvm.cpython-37.pyc
│   │   │   ├── configuration.py
│   │   │   ├── decorators.py
│   │   │   ├── devices
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lvm
│   │   │   │   │   ├── activate.py
│   │   │   │   │   ├── batch.py
│   │   │   │   │   ├── common.py
│   │   │   │   │   ├── create.py
│   │   │   │   │   ├── deactivate.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── listing.py
│   │   │   │   │   ├── main.py
│   │   │   │   │   ├── prepare.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── activate.cpython-37.pyc
│   │   │   │   │   │   ├── batch.cpython-37.pyc
│   │   │   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   │   │   ├── create.cpython-37.pyc
│   │   │   │   │   │   ├── deactivate.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── listing.cpython-37.pyc
│   │   │   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   │   │   ├── prepare.cpython-37.pyc
│   │   │   │   │   │   ├── trigger.cpython-37.pyc
│   │   │   │   │   │   └── zap.cpython-37.pyc
│   │   │   │   │   ├── strategies
│   │   │   │   │   │   ├── bluestore.py
│   │   │   │   │   │   ├── filestore.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── bluestore.cpython-37.pyc
│   │   │   │   │   │   │   ├── filestore.cpython-37.pyc
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── strategies.cpython-37.pyc
│   │   │   │   │   │   │   └── validators.cpython-37.pyc
│   │   │   │   │   │   ├── strategies.py
│   │   │   │   │   │   └── validators.py
│   │   │   │   │   ├── trigger.py
│   │   │   │   │   └── zap.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── raw
│   │   │   │   │   ├── activate.py
│   │   │   │   │   ├── common.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── list.py
│   │   │   │   │   ├── main.py
│   │   │   │   │   ├── prepare.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── activate.cpython-37.pyc
│   │   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── list.cpython-37.pyc
│   │   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   │   └── prepare.cpython-37.pyc
│   │   │   │   └── simple
│   │   │   │   ├── activate.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── main.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── activate.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   │   ├── scan.cpython-37.pyc
│   │   │   │   │   └── trigger.cpython-37.pyc
│   │   │   │   ├── scan.py
│   │   │   │   └── trigger.py
│   │   │   ├── exceptions.py
│   │   │   ├── __init__.py
│   │   │   ├── inventory
│   │   │   │   ├── __init__.py
│   │   │   │   ├── main.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── main.cpython-37.pyc
│   │   │   ├── log.py
│   │   │   ├── main.py
│   │   │   ├── process.py
│   │   │   ├── __pycache__
│   │   │   │   ├── configuration.cpython-37.pyc
│   │   │   │   ├── decorators.cpython-37.pyc
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── log.cpython-37.pyc
│   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   ├── process.cpython-37.pyc
│   │   │   │   └── terminal.cpython-37.pyc
│   │   │   ├── systemd
│   │   │   │   ├── __init__.py
│   │   │   │   ├── main.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   │   └── systemctl.cpython-37.pyc
│   │   │   │   └── systemctl.py
│   │   │   ├── terminal.py
│   │   │   ├── tests
│   │   │   │   ├── conftest.py
│   │   │   │   ├── devices
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── lvm
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_activate.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_batch.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_create.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_deactivate.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_listing.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_prepare.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_trigger.cpython-37.pyc
│   │   │   │   │   │   │   └── test_zap.cpython-37.pyc
│   │   │   │   │   │   ├── strategies
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── test_bluestore.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── test_filestore.cpython-37.pyc
│   │   │   │   │   │   │   │   └── test_validate.cpython-37.pyc
│   │   │   │   │   │   │   ├── test_bluestore.py
│   │   │   │   │   │   │   ├── test_filestore.py
│   │   │   │   │   │   │   └── test_validate.py
│   │   │   │   │   │   ├── test_activate.py
│   │   │   │   │   │   ├── test_batch.py
│   │   │   │   │   │   ├── test_create.py
│   │   │   │   │   │   ├── test_deactivate.py
│   │   │   │   │   │   ├── test_listing.py
│   │   │   │   │   │   ├── test_prepare.py
│   │   │   │   │   │   ├── test_trigger.py
│   │   │   │   │   │   └── test_zap.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── test_zap.cpython-37.pyc
│   │   │   │   │   └── test_zap.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── conftest.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_configuration.cpython-37.pyc
│   │   │   │   │   ├── test_decorators.cpython-37.pyc
│   │   │   │   │   ├── test_inventory.cpython-37.pyc
│   │   │   │   │   ├── test_main.cpython-37.pyc
│   │   │   │   │   ├── test_process.cpython-37.pyc
│   │   │   │   │   └── test_terminal.cpython-37.pyc
│   │   │   │   ├── test_configuration.py
│   │   │   │   ├── test_decorators.py
│   │   │   │   ├── test_inventory.py
│   │   │   │   ├── test_main.py
│   │   │   │   ├── test_process.py
│   │   │   │   └── test_terminal.py
│   │   │   └── util
│   │   │   ├── arg_validators.py
│   │   │   ├── constants.py
│   │   │   ├── device.py
│   │   │   ├── disk.py
│   │   │   ├── encryption.py
│   │   │   ├── __init__.py
│   │   │   ├── prepare.py
│   │   │   ├── __pycache__
│   │   │   │   ├── arg_validators.cpython-37.pyc
│   │   │   │   ├── constants.cpython-37.pyc
│   │   │   │   ├── device.cpython-37.pyc
│   │   │   │   ├── disk.cpython-37.pyc
│   │   │   │   ├── encryption.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── prepare.cpython-37.pyc
│   │   │   │   ├── system.cpython-37.pyc
│   │   │   │   └── templates.cpython-37.pyc
│   │   │   ├── system.py
│   │   │   └── templates.py
│   │   └── EGG-INFO
│   │   ├── dependency_links.txt
│   │   ├── entry_points.txt
│   │   ├── not-zip-safe
│   │   ├── PKG-INFO
│   │   ├── SOURCES.txt
│   │   └── top_level.txt
│   ├── ceph_volume_client.py
│   ├── easy-install.pth
│   ├── __pycache__
│   │   └── site.cpython-37.pyc
│   ├── rados-2.0.0-py3.7.egg-info
│   │   ├── dependency_links.txt
│   │   ├── PKG-INFO
│   │   ├── SOURCES.txt
│   │   └── top_level.txt
│   ├── rados.cpython-37m-x86_64-linux-gnu.so
│   ├── rbd-2.0.0-py3.7.egg-info
│   │   ├── dependency_links.txt
│   │   ├── PKG-INFO
│   │   ├── SOURCES.txt
│   │   └── top_level.txt
│   ├── rbd.cpython-37m-x86_64-linux-gnu.so
│   ├── rgw-2.0.0-py3.7.egg-info
│   │   ├── dependency_links.txt
│   │   ├── PKG-INFO
│   │   ├── SOURCES.txt
│   │   └── top_level.txt
│   ├── rgw.cpython-37m-x86_64-linux-gnu.so
│   └── site.py
└── sbin -> bin
43 directories, 233 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment