bash -x src/Misc/layoutbin/installdependencies.sh &>> install.log
+ set -e -o pipefail
++ id -u
+ '[' 0 -ne 0 ']'
+ '[' -e /etc/os-release ']'
+ echo '--------OS Information--------'
--------OS Information--------
+ cat /etc/os-release| $prep = <<SCRIPT | |
| set -e -o pipefail | |
| apt-get update | |
| apt-get install --assume-yes --no-install-recommends curl git jq | |
| curl -fsSL get.docker.com | sh | |
| apt-get update | |
| apt-get install --assume-yes --no-install-recommends docker-compose-plugin |
bash -x src/Misc/layoutbin/installdependencies.sh &>> install.log
+ set -e -o pipefail
++ id -u
+ '[' 0 -ne 0 ']'
+ '[' -e /etc/os-release ']'
+ echo '--------OS Information--------'
--------OS Information--------
+ cat /etc/os-release| #!/usr/bin/env python3 | |
| # ruff: noqa: T201 | |
| """Print a skeleton Ansible argument_specs.yml file.""" | |
| import os | |
| from pathlib import Path | |
| import yaml | |
| def find_yaml_files(directory: str) -> list[str]: |
| #!/usr/bin/env python3 | |
| # ruff: noqa: E501,PERF401 | |
| # | |
| """Download the latest artifact from a GitHub repository.""" | |
| import zipfile | |
| from pathlib import Path | |
| import requests | |
| OWNER = "konstruktoid" |
| #!/bin/bash | |
| set -eu -o pipefail | |
| if ! command -v VBoxManage &> /dev/null; then | |
| echo "[ERROR] VirtualBox is not installed" | |
| exit 1 | |
| fi | |
| if ! command -v vagrant &> /dev/null; then |
| #!/bin/bash | |
| # So sorry it had to come to this, this is slow. | |
| # Note that pim and keyfiles etc is static and needs to be modified if used. | |
| # veracrypt --text --dismount --slot 1 | |
| set -eu -o pipefail | |
| CONTAINER="" | |
| MOUNTDIR="" | |
| WORDLIST="" |
| #!/bin/bash | |
| set -uo pipefail | |
| CONTAINER_RUNTIME="unset" | |
| if command -v docker >/dev/null 2>&1; then | |
| CONTAINER_RUNTIME=docker | |
| else | |
| CONTAINER_RUNTIME=podman | |
| fi |
| #!/bin/bash -eux | |
| if nproc &>/dev/null; then | |
| CPUS=$(nproc) | |
| elif grep -qc processor /proc/cpuinfo; then | |
| CPUS=$(grep -c processor /proc/cpuinfo) | |
| elif sysctl -n hw.ncpu &>/dev/null; then | |
| CPUS=$(sysctl -n hw.ncpu) | |
| else | |
| CPUS=1 |
| #!/bin/bash | |
| { | |
| for VM in $(vagrant status | grep -iE 'running.*virtualbox' | grep "$1" | awk '{print $1}'); do | |
| mapfile -t VAGRANT_SSH < <(vagrant ssh-config "$VM" | awk '{print $NF}') | |
| echo "[${VAGRANT_SSH[0]}]" | |
| echo "${VAGRANT_SSH[1]} ansible_connection=ssh ansible_port=${VAGRANT_SSH[3]} ansible_user=${VAGRANT_SSH[2]} ansible_ssh_private_key_file=${VAGRANT_SSH[7]}" | |
| done | |
| } > "hosts" |
Short guide showing how to install Developer ID certificates, when the Allow button doesn't show up under System Preferences > Security & Privacy > General or you're seeing (libkern/kext) system policy prevents loading; check the system/kernel logs for errors or try kextutil(8). in the installation logs (CMD + L).
macOS Catalina
ProductName: Mac OS X
ProductVersion: 10.15.4