5 lines
103 B
Bash
5 lines
103 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
echo "[deprecated] nsctl -> certctl" >&2
|
|
python3 -m certctl "$@"
|