minor fix and improvements
authorIan Kelling <ian@iankelling.org>
Tue, 24 Sep 2024 00:23:48 +0000 (20:23 -0400)
committerIan Kelling <ian@iankelling.org>
Tue, 24 Sep 2024 00:23:48 +0000 (20:23 -0400)
brc
dynamic-ip-update
filesystem/usr/local/bin/git [new file with mode: 0755]
system-status

diff --git a/brc b/brc
index acf295079f768b4ef4253d0713055ea24d42cf99..8ee018feb8f74cfb338516f736d57940b67230d2 100644 (file)
--- a/brc
+++ b/brc
@@ -2286,7 +2286,7 @@ profsrc() {
 prof() {
   command prof &>/dev/null &
 }
-# self chat. chatlog messages to myself.
+# self chat. record messages to myself.
 sc() {
   while read -r l; do
     printf '\033[1A\033[K'; printf "%s\n" "$l"| ts "%F %T" | tee -a /p/self-chat.log
index 3d36363bcfe3cce4e60aa2c1e4ff804d9f9eaad8..d524718ee425acf3ca98037f918e08a8552a0584 100755 (executable)
@@ -206,9 +206,9 @@ answer
 quit
 EOF
 
-  chronic nsupdate $ip_arg -k /p/c/machine_specific/vps/filesystem/etc/bind/Kb8.nz.*.private <$tmpf || nsupdate_fails=$((nsupdate_fails + 1))
+  chronic nsupdate $ip_arg -k /p/c/user_specific/bind/etc/bind/Kb8.nz.*.private <$tmpf || nsupdate_fails=$((nsupdate_fails + 1))
   sed -i 's/^server .*/server bk.b8.nz/' $tmpf
-  chronic nsupdate $ip_arg -k /p/c/machine_specific/vps/filesystem/etc/bind/Kb8.nz.*.private <$tmpf  || nsupdate_fails=$((nsupdate_fails + 1))
+  chronic nsupdate $ip_arg -k /p/c/user_specific/bind/etc/bind/Kb8.nz.*.private <$tmpf  || nsupdate_fails=$((nsupdate_fails + 1))
   if (( nsupdate_fails > nsupdate_fail_limit )); then
     echo error: nsupdate is persistently failing >&2
     exit 1
diff --git a/filesystem/usr/local/bin/git b/filesystem/usr/local/bin/git
new file mode 100755 (executable)
index 0000000..df67549
--- /dev/null
@@ -0,0 +1,34 @@
+#!/bin/bash
+# I, Ian Kelling, follow the GNU license recommendations at
+# https://www.gnu.org/licenses/license-recommendations.en.html. They
+# recommend that small programs, < 300 lines, be licensed under the
+# Apache License 2.0. This file contains or is part of one or more small
+# programs. If a small program grows beyond 300 lines, I plan to change
+# to a recommended GPL license.
+
+# Copyright 2024 Ian Kelling
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+
+#     http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+case $PWD in
+  /p/c|/p/c/*|/q/p/c|/q/p/c/*)
+    orig_umask=$(umask)
+    umask 0077
+    /usr/bin/git "$@"
+    umask "$orig_umask"
+    ;;
+  *)
+    /usr/bin/git "$@"
+    ;;
+esac
index ce8c44f5cddb0d58047d5182fea9e46398687037..d525a8b7f1aff84c4980b4ca15ba5c9f69610061 100755 (executable)
@@ -87,10 +87,10 @@ write-status() {
       if systemctl show -p SubState --value ${services[@]} | grep -E -v '^(running|)$' &>/dev/null; then
         for s in ${services[@]}; do
           if [[ $(systemctl show -p SubState --value $s 2>&1) != running ]]; then
+            chars+=($s)
             bads+=($s)
           fi
         done
-        chars+=(MYSERS)
       fi
       p ${bads[*]} | lo -240 mysers
       ;;
@@ -107,10 +107,10 @@ write-status() {
       if systemctl show -p SubState --value ${services[@]} | grep -E -v '^(running|)$' &>/dev/null; then
         for s in ${services[@]}; do
           if [[ $(systemctl show -p SubState --value $s 2>&1) != running ]]; then
+            chars+=($s)
             bads+=($s)
           fi
         done
-        chars+=(PROM)
       fi
       p ${bads[*]} | lo -240 prom
       ;;