Skip to content

Commit 5a480e9

Browse files
committed
Sync doc.
1 parent 5a76459 commit 5a480e9

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

sites/hurl.dev/_docs/entry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ skip: true
169169
HTTP 200
170170
```
171171

172-
Additionally, a `delay` can be inserted between requests, to add a delay before execution of a request.
172+
Additionally, a `delay` can be inserted between requests, to add a delay before execution of a request (aka sleep).
173173

174174
```hurl
175175
# A 5 seconds delayed request

sites/hurl.dev/_docs/installation.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Precompiled binary is available at [Hurl latest GitHub release]:
1515

1616
```shell
1717
$ INSTALL_DIR=/tmp
18-
$ VERSION=5.0.1
18+
$ VERSION=6.0.0
1919
$ curl --silent --location https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl-$VERSION-x86_64-unknown-linux-gnu.tar.gz | tar xvz -C $INSTALL_DIR
2020
$ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
2121
```
@@ -25,11 +25,19 @@ $ export PATH=$INSTALL_DIR/hurl-$VERSION-x86_64-unknown-linux-gnu/bin:$PATH
2525
For Debian / Ubuntu, Hurl can be installed using a binary .deb file provided in each Hurl release.
2626

2727
```shell
28-
$ VERSION=5.0.1
28+
$ VERSION=6.0.0
2929
$ curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VERSION/hurl_${VERSION}_amd64.deb
3030
$ sudo apt update && sudo apt install ./hurl_${VERSION}_amd64.deb
3131
```
3232

33+
For Ubuntu (bionic, focal, jammy, noble), Hurl can be installed from `ppa:lepapareil/hurl`
34+
35+
```shell
36+
$ VERSION=6.0.0
37+
$ sudo apt-add-repository -y ppa:lepapareil/hurl
38+
$ sudo apt install hurl="${VERSION}"*
39+
```
40+
3341
#### Alpine
3442

3543
Hurl is available on `testing` channel.

sites/hurl.dev/_docs/request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ cert: /etc/client-cert.pem # client authentication certificate
214214
key: /etc/client-cert.key # client authentication certificate key
215215
compressed: true # request a compressed response
216216
connect-timeout: 20s # connect timeout
217-
delay: 3s # delay for this request
217+
delay: 3s # delay for this request (aka sleep)
218218
http3: true # use HTTP/3 protocol version
219219
insecure: true # allow insecure SSL connections and transfers
220220
ipv6: true # use IPv6 addresses

sites/hurl.dev/_docs/samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ jsonpath "$.state" == "COMPLETED"
718718
Add delay for every request, or a particular request:
719719

720720
```hurl
721-
# Delaying this request by 5 seconds
721+
# Delaying this request by 5 seconds (aka sleep)
722722
GET https://example.org/turtle
723723
[Options]
724724
delay: 5s

0 commit comments

Comments
 (0)