9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
![]() |
#!/bin/bash
|
||
|
|
||
|
if [ `whoami` != 'root' ]; then
|
||
|
echo $(gettext "Permission denied, please run by root")
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
systemctl restart biometric-authentication.service
|