mirror of
https://github.com/elisspace/rtinst.git
synced 2026-08-29 15:44:06 +00:00
9 lines
123 B
Bash
Executable File
9 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$(id -u)" = "0" ]; then
|
|
echo "Cannot be run as root, or with sudo"
|
|
exit
|
|
fi
|
|
|
|
sudo rtsetpass $LOGNAME
|