Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| ceph -w | |
| ceph health detail | |
| ceph osd df | |
| ceph osd find | |
| ceph osd blocked-by | |
| ceph osd pool ls detail | |
| ceph osd pool get rbd all | |
| ceph pg dump | grep pgid | |
| ceph pg pgid |
| # https://meltdownattack.com | |
| - name: Patch Linux systems against Meltdown and Spectre | |
| hosts: "{{ target_hosts | default('all') }}" | |
| become: yes | |
| vars: | |
| reboot_after_update: yes | |
| packages: | |
| # https://access.redhat.com/security/vulnerabilities/speculativeexecution |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| #!/bin/bash | |
| # As the "bufferbloat" folks have recently re-discovered and/or more widely | |
| # publicized, congestion avoidance algorithms (such as those found in TCP) do | |
| # a great job of allowing network endpoints to negotiate transfer rates that | |
| # maximize a link's bandwidth usage without unduly penalizing any particular | |
| # stream. This allows bulk transfer streams to use the maximum available | |
| # bandwidth without affecting the latency of non-bulk (e.g. interactive) | |
| # streams. |