https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
| # Usage: copy-to-docker-volume SRC_PATH DEST_VOLUME_NAME [DEST_PATH] | |
| copy-to-docker-volume() { | |
| SRC_PATH=$1 | |
| DEST_VOLUME_NAME=$2 | |
| DEST_PATH="${3:-}" | |
| # create smallest Docker image possible | |
| echo -e 'FROM scratch\nLABEL empty=""' | docker build -t empty - | |
| # create temporary container to be able to mount volume | |
| CONTAINER_ID=$(docker container create -v my-volume:/data empty cmd) | |
| # copy files to volume |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| @echo off | |
| reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f | |
| shutdown /r /t 0 |
AWX 17 comes shipped with Ansible version 2.9.2*, but if you want to upgrade the Ansible version it can be some hassle. Here is how to upgrade the Ansible version for AWX :)
Note: the upgrade has to happen in the docker containers!
Login and run bash commands on the web container:
$ docker exec -it awx_web bash| function Get-ArgumentCompleters { | |
| <# | |
| .SYNOPSIS | |
| Lists all registered argument completers created with Register-ArgumentCompleter. | |
| .DESCRIPTION | |
| This function retrieves all custom argument completers registered in the current PowerShell session | |
| using Register-ArgumentCompleter and displays their script block contents. | |
| .PARAMETER ShowScriptBlock |