Disable hard-coded www dns entry.

This commit is contained in:
Tom Alexander 2023-08-12 20:19:02 -04:00
parent 8bad10eace
commit 40437bec04
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 26 additions and 2 deletions

View File

@ -0,0 +1,22 @@
#!/usr/bin/env bash
#
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
git filter-branch --env-filter '
WRONG_EMAIL="old@email.foo"
NEW_NAME="New Name"
NEW_EMAIL="new@email.buzz"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_AUTHOR_NAME="$NEW_NAME"
export GIT_AUTHOR_EMAIL="$NEW_EMAIL"
fi
' --tag-name-filter cat --commit-filter 'git commit-tree -S "$@";' -- --branches --tags

View File

@ -47,6 +47,8 @@
dest: /usr/local/bin/git_find_merged_branches
- src: cleanup_temporary_files
dest: /usr/local/bin/cleanup_temporary_files
- src: git_fix_author.bash
dest: /usr/local/bin/git_fix_author
- import_tasks: tasks/freebsd.yaml
when: 'os_flavor == "freebsd"'

View File

@ -46,8 +46,8 @@ fm1._domainkey IN CNAME fm1.fizz.buzz.dkim.fmhosted.com.
fm2._domainkey IN CNAME fm2.fizz.buzz.dkim.fmhosted.com.
fm3._domainkey IN CNAME fm3.fizz.buzz.dkim.fmhosted.com.
www IN A 127.0.0.1
IN AAAA ::1
;www IN A 127.0.0.1
; IN AAAA ::1
; Allows email clients to automatically find the correct settings for your account.