From 0c2c17b8abed7f7cee9e2130422f3f6d5a565e61 Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Mon, 25 Dec 2023 05:33:05 +0000 Subject: [PATCH] Latest --- .../universal/run_after_01-pre-install.sh.tmpl | 8 ++++---- home/dot_config/shell/macos.sh.tmpl | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl b/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl index fdc0919e..718820e9 100644 --- a/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl +++ b/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl @@ -346,7 +346,7 @@ configureSSHD() { ### Restart SSH server if [ -d /Applications ] && [ -d /System ]; then ### macOS - logg info 'Running sudo systemsetup -setremotelogin on' && sudo systemsetup -setremotelogin on + logg info 'Running sudo systemsetup -setremotelogin on' && sudo systemsetup -setremotelogin on > /dev/null logg info 'Running sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist' && sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist 2> /dev/null logg info 'Running sudo launchctl stop com.openssh.sshd' && sudo launchctl stop com.openssh.sshd logg info 'Running sudo launchctl start com.openssh.sshd' && sudo launchctl start com.openssh.sshd && logg info 'Successfully ran launchctl start com.openssh.sshd' @@ -491,17 +491,17 @@ enableAutoUpdateDarwin() { ensurePipUpdated() { ### python3.10 pip update if command -v python3.10 > /dev/null; then - logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip & + logg info 'Ensuring python3.10 pip is updated' && python3.10 -m pip install --upgrade pip > /dev/null & fi ### python3.11 pip update if command -v python3.11 > /dev/null; then - logg info 'Ensuring python3.11 pip is updated' && python3.11 -m pip install --upgrade pip & + logg info 'Ensuring python3.11 pip is updated' && python3.11 -m pip install --upgrade pip > /dev/null & fi ### python3.12 pip update # if command -v python3.12 > /dev/null; then - # logg info 'Ensuring python3.12 pip is updated' && python3.12 -m pip install --upgrade pip & + # logg info 'Ensuring python3.12 pip is updated' && python3.12 -m pip install --upgrade pip > /dev/null & # fi wait } diff --git a/home/dot_config/shell/macos.sh.tmpl b/home/dot_config/shell/macos.sh.tmpl index 0a1e7779..47474fbc 100644 --- a/home/dot_config/shell/macos.sh.tmpl +++ b/home/dot_config/shell/macos.sh.tmpl @@ -18,7 +18,7 @@ if [ -n "$DEBUG" ] || [ -n "$DEBUG_MODE" ]; then fi # Enable SSH access -sudo systemsetup -setremotelogin {{ .macosRemoteLogin }} +sudo systemsetup -setremotelogin {{ .macosRemoteLogin }} > /dev/null # Close any open System Preferences panes, to prevent them from overriding # settings we’re about to change