mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- Add merlin iSCSI config for PROLE-DATA-4 mounted at /prole/d004 (xfs, _netdev,noatime) - Refine iscsi role login/mount flow (device resolution, mkfs-if-missing, UUID fstab, tags) - Ensure installer run_script stages lib/shell into PROLE_HOME so etc scripts can source common libs; add regression test - Add init scripts for Forgejo/GitLab; ignore generated conf/prole.cfg Co-authored-by: Junie <junie@jetbrains.com>
9 lines
226 B
Bash
9 lines
226 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Backward-compat wrapper for a common misspelling.
|
|
# Prefer: etc/init_forgejo.sh
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec bash "$SCRIPT_DIR/init_forgejo.sh" "$@"
|