Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| ... | |
| <script> | |
| // don't load bootstrap - confluence does not need this | |
| var netdataNoBootstrap = true; | |
| var netdataTheme = 'white'; | |
| var netdataPrepCallback = function() { |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import os | |
| import glob | |
| import platform | |
| import re | |
| import random | |
| import string | |
| print('Change ID of Teamviewer for macOS') |
| let d = new Date() | |
| d.setDate(d.getDate() - 1) | |
| const date = d.toISOString().split('T')[0] | |
| const RssToEmail = require('rss-to-email') | |
| const config = { | |
| accentColor: "red", | |
| header: { | |
| link: "", | |
| title: "RSS Feed" |
| version: '3.2' | |
| services: | |
| collectd: | |
| image: fr3nd/collectd | |
| privileged: true | |
| network_mode: host | |
| volumes: | |
| - /proc:/mnt/proc:ro | |
| - ./collectd.conf:/etc/collectd/collectd.conf |
| # Tested on a Vultr CentOS 8 server. Run with root! | |
| yum install -y openssl-devel gcc-c++ python3-devel libacl-devel | |
| dnf install -y redhat-rpm-config | |
| pip3 install virtualenv | |
| virtualenv --python=python3 borg-env | |
| source borg-env/bin/activate | |
| pip3 install borgbackup | |
| # Borgmatic |
| #!/bin/sh | |
| # Tested on Vultr as of Nov 21, 2019 | |
| groupadd docker | |
| usermod -aG docker birkhoff # add birkhoff to docker group | |
| newgrp docker | |
| yum remove -y docker \ | |
| docker-client \ |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
This configuration features:
j| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBF4beKUBEADaDr1y6DY43tdUk6Ak5++au3Pwbwh+PRjn/b1u6IfXb9hVw1yq1YWFG/L1 | |
| hBopCm0KihrDvwFYpgfWvdKTO2WE/LToVuvAZP9Dsu3MRGZWHHZ2ct/Yn4Q5MgqQdu7zNTVO | |
| t8RGmA3P7kHLY4fdsj5h/62PjTObqbDA5oX162kYgYBzlohrftxws+k3cmDDnPcJSW8iWVzF | |
| V9f2tBAr1yArvpCiMQ49UPLfiN9/PzlUNwQwRS2XKKYderToPN1JyCxBYIfaJ3FKmqp52fnq | |
| ytxv3f5mXI9hbpvVQYU+gFBbhzWAPF0Uvjv3dhonGP9H/xvbdfjS9Zlk7opPMaxgaKD/D+YT | |
| y+8fG9sVVp7Gs/7Yt/g08MEG9m0yBdDpwnFXMX+oqBmzyrzEvthxAztd9LT94mjaQrJCoOfo | |
| vOOF5g3Z0S4xLOVr7JZXulHHqrNP+KVdmSoX7ESjgB8mv0tWZkR96B/z5MJahikPthVTTH+1 | |
| 4UNU/h72jKimjPbd0NQ8v/pwqOGlipWxG1jAE43cUZlRv3hmDtGJynCBVkVid9yibp1nmoMr |
| become: yes | |
| tasks: | |
| - name: Gather the rpm package facts | |
| package_facts: | |
| manager: auto | |
| - name: Check whether docker-ce is installed | |
| set_fact: | |
| docker_installed: true | |
| when: "'docker-ce' in ansible_facts.packages" |