6 lines
253 B
Bash
6 lines
253 B
Bash
#!/bin/bash
|
|
# Первичная установка ssh-monitor — обёртка над update_ssh_monitor.sh --deploy
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec "$SCRIPT_DIR/update_ssh_monitor.sh" --deploy "$@"
|