mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-29 21:51:31 +00:00
13 lines
249 B
Bash
13 lines
249 B
Bash
#!/bin/bash
|
|
|
|
if [ $USER = 'yolu' ] || [ $USER == 'root' ];then
|
|
echo ""
|
|
else
|
|
python /opt/jumpserver/jumpserver.pyo
|
|
if [ $USER == 'guanghongwei' ] || [ $USER == 'liufuhua' ];then
|
|
echo
|
|
else
|
|
exit 3
|
|
echo
|
|
fi
|
|
fi |