5 lines
157 B
Bash
5 lines
157 B
Bash
#!/bin/bash
|
|
# Shim to emit warning and call start-singleuser.py
|
|
echo "WARNING: Use start-singleuser.py instead"
|
|
|
|
exec /usr/local/bin/start-singleuser.py "$@" |