| Dmitriy Kruglov | d3b2bb9 | 2023-12-07 13:26:31 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |||||
| 3 | # In necessary, uncomment to add proxy | ||||
| 4 | # echo "Acquire::https::Proxy \"http://PROXY_ENDPOINT\";" >> /etc/apt/apt.conf.d/proxy.conf | ||||
| 5 | # echo "Acquire::http::Proxy \"http://PROXY_ENDPOINT\";" >> /etc/apt/apt.conf.d/proxy.conf | ||||
| 6 | apt update | ||||
| 7 | # Install fio with a timeout to wait for apt lock to be released | ||||
| 8 | apt -y -o DPkg::Lock::Timeout=180 install fio | ||||