I hereby claim:
- I am mberglof on github.
- I am mberglof (https://keybase.io/mberglof) on keybase.
- I have a public key ASDK6VWiP2hOznU5kq8188XnCPIBNrH1FSkE0JTj_IY41Qo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # make tracker3 daemon non workable & idompotent | |
| # this script will reset its settings, and configure tracker3 daemon, to not let it do anyting. | |
| # if other code has dependency on this tracker, then it will not break, but we also do achieve our goal. | |
| # interpretation for org.freedesktop.Tracker3.Miner.Files enable-monitor from this file | |
| # https://gitlab.gnome.org/GNOME/tracker-miners/-/blob/master/src/miners/fs/tracker-config.c | |
| #Time in seconds before crawling filesystem (0->1000) |
| #!/usr/bin/env bash | |
| # vim: ts=2 sw=2 et | |
| # requirements: pcregrep and sft | |
| # For each of the words, get options with pcregrep -o -- '--\w+-?(\w+)?' | |
| WORDS=$(sft -h | pcregrep -o '^ \w+(-?)(\w+)?' | sed -e 's/^ //' | tr "\n" " ") | |
| SERVERS=() |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| DOMAIN=${1#*.} | |
| SERVER=${1%%.*} | |
| CPU=${2} | |
| CENTOS=${CENTOS:=6} | |
| if [[ $# -lt 2 ]]; then | |
| echo -e "Usage:\t$(basename $0) <fqdn> <nr. cpus>" | |
| echo -e "Example: \"CENTOS=7 $(basename $0) foo-01.example.com 4\"" |
| heat_template_version: 2013-05-23 | |
| description: | | |
| This is a Heat template to deploy a single Linux server running redis. | |
| parameters: | |
| flavor: | |
| description: Flavor for Cloud Servers | |
| type: string |