Compare commits

..

No commits in common. "897e86ad6030240a976c6bdd6d7b1fa95985d180" and "bd00dfe02c4306451d72d72670ce8f31742481e8" have entirely different histories.

5 changed files with 11 additions and 25 deletions

View File

@ -1,11 +1,5 @@
# Changelog # Changelog
## 2025-03-25 - 2.4.5 - fix(install)
Improve interactive terminal detection and update installation instructions
- Enhanced install.sh to better detect non-interactive environments and provide clearer guidance for both interactive and non-interactive installations
- Updated README.md quick install instructions to recommend process substitution and clarify auto-yes usage
## 2025-03-25 - 2.4.4 - fix(install) ## 2025-03-25 - 2.4.4 - fix(install)
Improve interactive mode detection and non-interactive installation handling in install.sh Improve interactive mode detection and non-interactive installation handling in install.sh

View File

@ -60,8 +60,8 @@ fi
if [ ! -t 0 ] || [ ! -t 1 ]; then if [ ! -t 0 ] || [ ! -t 1 ]; then
# Either stdin or stdout is not a terminal, check if -y was provided # Either stdin or stdout is not a terminal, check if -y was provided
if [ $AUTO_YES -ne 1 ]; then if [ $AUTO_YES -ne 1 ]; then
echo "Script detected it's running in a non-interactive environment without -y flag." echo "Warning: Running in non-interactive mode without -y flag."
echo "Attempting to find a controlling terminal for interactive prompts..." echo "Will ask for confirmation via controlling terminal."
# Try to use a controlling terminal for user input # Try to use a controlling terminal for user input
if [ -t 1 ]; then if [ -t 1 ]; then
# Stdout is a terminal, use it # Stdout is a terminal, use it
@ -72,14 +72,9 @@ if [ ! -t 0 ] || [ ! -t 1 ]; then
fi fi
if [ $INTERACTIVE -eq 0 ]; then if [ $INTERACTIVE -eq 0 ]; then
echo "ERROR: No controlling terminal available for interactive prompts." echo "No controlling terminal available. To run non-interactively, use:"
echo "For interactive installation (RECOMMENDED):" echo " curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh | sudo bash -s -- -y"
echo " sudo bash <(curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh)"
echo "For non-interactive installation with automatic dependency installation:"
echo " sudo bash <(curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh) -y"
exit 1 exit 1
else
echo "Interactive terminal found, continuing with prompts..."
fi fi
fi fi
fi fi

View File

@ -1,6 +1,6 @@
{ {
"name": "@serve.zone/nupst", "name": "@serve.zone/nupst",
"version": "2.4.5", "version": "2.4.4",
"description": "Node.js UPS Shutdown Tool for SNMP-enabled UPS devices", "description": "Node.js UPS Shutdown Tool for SNMP-enabled UPS devices",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {

View File

@ -19,16 +19,13 @@ NUPST is a command-line tool that monitors SNMP-enabled UPS devices and initiate
### Quick Install (One-line command) ### Quick Install (One-line command)
```bash ```bash
# RECOMMENDED: Install interactively using process substitution (requires root privileges) # Install directly without cloning the repository (requires root privileges)
# This ensures proper interactive prompts for dependencies # This will interactively prompt for installing any dependencies
sudo bash <(curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh) curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh | sudo bash
# Alternative: Install with auto-yes for dependencies (will install git automatically if needed) # Install with auto-yes for dependencies (will install git automatically if needed)
# Use this for automated/non-interactive installations # Use this for automated/non-interactive installations
sudo bash <(curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh) -y curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh | sudo bash -c "bash -s -- -y"
# For systems where process substitution is not available (e.g., some older shells)
curl -sSL https://code.foss.global/serve.zone/nupst/raw/branch/main/install.sh | sudo bash -s -- -y
``` ```
### Direct from Git ### Direct from Git

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/nupst', name: '@serve.zone/nupst',
version: '2.4.5', version: '2.4.4',
description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices' description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices'
} }