7 lines
247 B
Bash
Executable File
7 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
BASE_DIR="/usr/local/hitme_plugins/global-autoresponders"
|
|
mkdir -p "$BASE_DIR/config/users" "$BASE_DIR/data/users" "$BASE_DIR/state/replies" "$BASE_DIR/logs"
|
|
echo "global-autoresponder updated; external configuration preserved"
|