Steps required to install Homebrew on MX Linux (and other Debian-based distros)
-
Update apt cache and optionally do a full upgrade
apt update
apt full-upgrade # optional, reboot if needed
#!/usr/bin/env python | |
""" | |
This is an example script for implementing dynamic inventory in Ansible. | |
It could have been written in bash, but python is much easier to read. | |
""" | |
import argparse | |
import json |
# Install linux update, followed by GCC and Make | |
sudo yum -y update | |
sudo yum install -y gcc make | |
# Install Nginx and PHP-FPM | |
sudo yum install -y nginx php-fpm | |
# Install PHP extensions | |
sudo yum install -y php-devel php-mysql php-pdo \ | |
php-pear php-mbstring php-cli php-odbc \ |
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"utcValue": { | |
"type": "string", | |
"defaultValue": "[utcNow()]", | |
"metadata": { | |
"description": "Returns the current (UTC) datetime value in the specified format. If no format is provided, the ISO 8601 (yyyyMMddTHHmmssZ) format is used" | |
} |