From 469ddb166e2d61b9dc8ea82150064872110b2b99 Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:32:23 +0000 Subject: [PATCH 1/8] Update miscellaneous/ps1/mount_guardian.ps1 --- miscellaneous/ps1/mount_guardian.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miscellaneous/ps1/mount_guardian.ps1 b/miscellaneous/ps1/mount_guardian.ps1 index 627db23..3f97bbe 100644 --- a/miscellaneous/ps1/mount_guardian.ps1 +++ b/miscellaneous/ps1/mount_guardian.ps1 @@ -16,8 +16,8 @@ $rclone_opts = "--vfs-cache-mode writes --vfs-cache-max-size 3T --vfs-cache-max- # Mastodon settings $mastodonInstance = "https://chatwithus.live" -$mastodonToken = "rimxBLi-eaJAcwagkmoj6UoW7Lc473tQY0cOM041Euw" -$mastodonUserID = "114386383616633367" +$mastodonToken = "" +$mastodonUserID = "" function Log { $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss" From 67294d0ce81bd9269740a1c43a41992056f7e5ac Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:34:01 +0000 Subject: [PATCH 2/8] Delete radiotoot/.env --- radiotoot/.env | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 radiotoot/.env diff --git a/radiotoot/.env b/radiotoot/.env deleted file mode 100644 index 1ac5b83..0000000 --- a/radiotoot/.env +++ /dev/null @@ -1,5 +0,0 @@ -DB_USER=radiotootuser -DB_PASSWORD=rusty2281 -DB_NAME=radiotootdb -DB_HOST_PRIMARY=38.102.127.174 -MASTODON_ACCESS_TOKEN=07w3Emdw-cv_TncysrNU8Ed_sHJhwtnvKmnLqKlHmKA From f98d70b0a206e783c0a5c655db63d52d331a9256 Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:34:20 +0000 Subject: [PATCH 3/8] Delete hostingtoot/.env --- hostingtoot/.env | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 hostingtoot/.env diff --git a/hostingtoot/.env b/hostingtoot/.env deleted file mode 100644 index 92e8845..0000000 --- a/hostingtoot/.env +++ /dev/null @@ -1,5 +0,0 @@ -DB_USER=hostingtootuser -DB_PASSWORD=rusty2281 -DB_NAME=hostingtootdb -DB_HOST_PRIMARY=38.102.127.174 -MASTODON_ACCESS_TOKEN=07w3Emdw-cv_TncysrNU8Ed_sHJhwtnvKmnLqKlHmKA From 17e895b04a3a40b710eadcc875df5387e7a5b814 Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:35:18 +0000 Subject: [PATCH 4/8] Update dbcheck/dbcheck1.py --- dbcheck/dbcheck1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbcheck/dbcheck1.py b/dbcheck/dbcheck1.py index f998be0..b76810e 100644 --- a/dbcheck/dbcheck1.py +++ b/dbcheck/dbcheck1.py @@ -5,8 +5,8 @@ import paramiko # ==== CONFIG ==== MASTODON_INSTANCE = "https://chatwithus.live" -MASTODON_TOKEN = "rimxBLi-eaJAcwagkmoj6UoW7Lc473tQY0cOM041Euw" -MASTODON_USER_ID = "114386383616633367" +MASTODON_TOKEN = "" +MASTODON_USER_ID = "" DISK_WARN_THRESHOLD = 10 # percent free INODE_WARN_THRESHOLD = 10 # percent free From 167e99bac4cff9f41d4f625bd900f24454f6b7c5 Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:36:23 +0000 Subject: [PATCH 5/8] Update miscellaneous/bash/database_lag.sh --- miscellaneous/bash/database_lag.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miscellaneous/bash/database_lag.sh b/miscellaneous/bash/database_lag.sh index 32c601a..d0295c2 100755 --- a/miscellaneous/bash/database_lag.sh +++ b/miscellaneous/bash/database_lag.sh @@ -1,8 +1,8 @@ #!/bin/bash # === CONFIG === -REPLICA_SERVER="cluster.db1.genesishostingtechnologies.com" # <-- fill this in -SSH_USER="doc" # <-- fill this in +REPLICA_SERVER="" # <-- fill this in +SSH_USER="" # <-- fill this in PG_USER="postgres" # usually postgres # === Connect and check SSH first === From 6992c112888cd78555d39e1eec71d6836717681d Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:38:00 +0000 Subject: [PATCH 6/8] Update miscellaneous/python/smartstevie.py --- miscellaneous/python/smartstevie.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miscellaneous/python/smartstevie.py b/miscellaneous/python/smartstevie.py index 098ace1..01b367f 100644 --- a/miscellaneous/python/smartstevie.py +++ b/miscellaneous/python/smartstevie.py @@ -3,10 +3,10 @@ import time from mastodon import Mastodon # === CONFIGURATION === -ICECAST_JSON_URL = "http://cast3.my-control-panel.com:7454/status-json.xsl" +ICECAST_JSON_URL = "" SONG_TRIGGER = "Spiderbait - Stevie" MASTODON_BASE_URL = "https://chatwithus.live" -MASTODON_TOKEN = "lKw-AO-vNZ0389uTlIlKxZlGJdNWPd6wdQ5dlHOAqyg" # replace with your token +MASTODON_TOKEN = "" # replace with your token TOOT_TEXT = "AH BUU BUU BUU BUU" # --- END CONFIG --- From ad65d3b5cd492ec1593394be6ca01e926234b6c9 Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:49:29 +0000 Subject: [PATCH 7/8] Delete infra_morale.log --- infra_morale.log | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 infra_morale.log diff --git a/infra_morale.log b/infra_morale.log deleted file mode 100644 index 9e4cc8f..0000000 --- a/infra_morale.log +++ /dev/null @@ -1,24 +0,0 @@ -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied -/bin/sh: 1: /home/doc/genesis-tools/infra_morale/fake_status_bot.rb: Permission denied From 77759f1e23b6d5f3ffee276b93532789625a042c Mon Sep 17 00:00:00 2001 From: doctator Date: Wed, 30 Apr 2025 14:51:14 +0000 Subject: [PATCH 8/8] Update miscellaneous/python/dbcheck1.py --- miscellaneous/python/dbcheck1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miscellaneous/python/dbcheck1.py b/miscellaneous/python/dbcheck1.py index 1a31a24..965a190 100644 --- a/miscellaneous/python/dbcheck1.py +++ b/miscellaneous/python/dbcheck1.py @@ -7,8 +7,8 @@ import psycopg2 # ==== CONFIG ==== MASTODON_INSTANCE = "https://chatwithus.live" -MASTODON_TOKEN = "rimxBLi-eaJAcwagkmoj6UoW7Lc473tQY0cOM041Euw" -MASTODON_USER_ID = "114386383616633367" +MASTODON_TOKEN = "" +MASTODON_USER_ID = "" HEALTHCHECK_HTML = "/var/www/html/healthcheck.html" DISK_WARN_THRESHOLD = 10