Skip to content

Commit a5516af

Browse files
CI: versionize scripts (nested+py), update README & notes
1 parent 4d2a463 commit a5516af

29 files changed

Lines changed: 75 additions & 61 deletions

.github/scripts/generate_release_notes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
###############################################
22
# Author : Jon Brown
3-
# Date : 2025-10-12
4-
# Version: 0.4
3+
# Date : 2025-11-15
4+
# Version: 0.5
55
###############################################
66
import openai
77
import subprocess

.github/scripts/update_readme.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
###############################################
22
# Author : Jon Brown
3-
# Date : 2025-10-12
4-
# Version: 0.4
3+
# Date : 2025-11-15
4+
# Version: 0.5
55
###############################################
66
START_MARKER = "<!-- VERSION_HISTORY_START -->"
77
END_MARKER = "<!-- VERSION_HISTORY_END -->"

.github/scripts/version_check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ insert_header_block() {
3232
local f="$1" v="$2"
3333
local block="###############################################
3434
# Author : ${AUTHOR}
35-
# Date : 2025-10-12
36-
# Version: 0.2
35+
# Date : 2025-11-15
36+
# Version: 0.3
3737
###############################################"
3838
if head -n1 "$f" | grep -q '^#!'; then
3939
{ head -n1 "$f"; printf '%s\n' "$block"; tail -n +2 "$f"; } > "${f}.tmp" && mv "${f}.tmp" "$f"

Computer Extensions/Compliance/NIST/failed_compliance_list.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
88
#

Computer Extensions/Health/uptime.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77

88
DAYS="days,"

Computer Extensions/Inventory/OS/enrollment_type.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77

88
enrollType=$(profiles status -type enrollment | head -1)

Computer Extensions/Inventory/OS/last_restart.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77

88
lastReboot=`who -b | awk '{print $3" "$4}'`

Computer Extensions/Security/ActivationLock/icloud_accounts.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77

88
currentUser=$(stat -f%Su /dev/console)

Computer Extensions/Security/FileVault/screensaver_lock.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77
askForPassword=$(sysadminctl -screenLock status 2>&1 | awk '{split($0,a,"]"); print a[2]}' | xargs)
88
user=$( ls -la /dev/console | cut -d " " -f 4 )

Computer Extensions/Security/Gatekeeper/firewall.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22
###############################################
33
# Author : Jon Brown
4-
# Date : 2025-10-12
5-
# Version: 0.4
4+
# Date : 2025-11-15
5+
# Version: 0.5
66
###############################################
77
OS=`/usr/bin/sw_vers -productVersion | /usr/bin/colrm 5`
88
if [[ "$OS" < "10.5" ]]; then

0 commit comments

Comments
 (0)