Freebsd shutdown privileges

I need to create a user and deny them permission to turn off the machine.

DO SOMEONE KNOW HOW TO CHANGE THE PERMISSIONS OF A NORMAL USER TO NOT ALLOW ME TO TURN OFF?

Answer

Use of shutdown requires a privileged account.

From freebsd.org’s documentation:

One must be root or a member of operator in order to run shutdown(8).

If the user has sudo rights, you can forbid access to shutdown, reboot, poweroff and halt by modifying /etc/sudoers something like this:

username ALL=(ALL:ALL) ALL, !SHUTDOWN

or

%groupname ALL=(ALL:ALL) ALL, !SHUTDOWN to disallow a group.

Attribution
Source : Link , Question Author : Mr.John , Answer Author : sippybear

Leave a Comment