This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Nov 23 11:09:01 mbukatov-usm1-gl1.example.com mnt-brick_gama_disperse_1-1[15659]: [2017-11-23 16:09:01.051463] M [MSGID: 113075] [posix-helpers.c:1907:posix_health_check_thread_proc] 0-volume_gama_disperse_4_plus_2x2-posix: health-check failed, going down | |
| Nov 23 11:09:01 mbukatov-usm1-gl1.example.com mnt-brick_gama_disperse_1-1[15659]: [2017-11-23 16:09:01.053220] M [MSGID: 113075] [posix-helpers.c:1926:posix_health_check_thread_proc] 0-volume_gama_disperse_4_plus_2x2-posix: still alive! -> SIGTERM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: Check if ntp is installed | |
| command: rpm -q ntp | |
| register: rpm_q_ntp | |
| changed_when: False | |
| failed_when: rpm_q_ntp.rc > 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - hosts: gluster | |
| user: root | |
| tasks: | |
| - name: Create a trusted storage pool | |
| gluster_peer: | |
| state: present | |
| nodes: "{{ groups['gluster'] }}" | |
| run_once: yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd ~/projects/ARO-HCP/test | |
| find cmd e2e e2e-setup pkg util -name *.go -print0 \ | |
| | xargs -0 -I'{}' -- git blame -wet '{}' \ | |
| | sed 's/^[^<]*<\([^>]*\)>.*/\1/' \ | |
| | sort \ | |
| | uniq -c \ | |
| | sort -nr -k1 \ | |
| | awk '{sum += $1; counts[NR] = $1; emails[NR] = $2} | |
| END {for (i=1; i<=NR; i++) printf "%6d %5.2f%% %s\n", counts[i], counts[i]/sum*100, emails[i]}' \ |
OlderNewer