On a freshly created DRBD block device, mkfs throws an error:
[adam@data01 ~] mkfs.ext4 /dev/drbd0
mke2fs 1.41.12 (17-May-2010)
mkfs.ext4: Wrong medium type while trying to determine filesystem size| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: EnvoyFilter | |
| metadata: | |
| name: oathkeeper | |
| namespace: istio-ingress | |
| spec: | |
| workloadSelector: |
| (function() { | |
| 'use strict'; | |
| console.log("Starting"); | |
| setInterval(function(){ | |
| var i; | |
| var button=document.getElementsByClassName("refreshNow"); | |
| for (i = 0; i < button.length; i++) { | |
| button[i].click(); | |
| console.log("Refreshing: "+i) | |
| } |
| #!/bin/bash | |
| CURL="/usr/bin/curl" | |
| echo -n "Enter Url to test: " | |
| read url | |
| URL="$url" | |
| result=`$CURL -o /dev/null -s -w %{time_connect}:%{time_starttransfer}:%{time_total} $URL` | |
| IFS=':' read -a times <<< "${result}" |
| Feature: Division | |
| In order to avoid silly mistakes | |
| Cashiers must be able to calculate a fraction | |
| Scenario: Regular numbers | |
| * I have entered 3 into the calculator | |
| * I have entered 2 into the calculator | |
| * I press divide | |
| * the result should be 1.5 on the screen |
| find /shares/build/ -type l -exec ls -l {} \; |
| find . -exec grep -lr --exclude="*\.svn*" "SEARCH STRING" {} >> filename.txt \; |