mirror of
https://github.com/BastilleBSD/bastille.git
synced 2025-12-11 01:19:52 +01:00
12 lines
168 B
Bash
Executable File
12 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# jexec $1 /usr/bin/login -f root
|
|
|
|
if [ $# -eq 1 ]; then
|
|
jexec $1 /usr/bin/login -f root
|
|
fi
|
|
|
|
if [ $# -eq 2 ]; then
|
|
jexec $1 /usr/bin/login -f $2
|
|
fi
|