sudo.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sat, 29 Dec 2018 23:23:30 +0200
changeset 2316 7de68fce3e7d
parent 1912 8b81a8f0f692
child 2578 63472ea9e73b
permissions -rw-r--r--
Verify your host/kernel satisfy LXC requirements.

.. -*- coding: utf-8; -*-

=======
 sudo.
=======
.. contents::
   :local:

Stop sudo asking for password.
==============================
::

  username ALL =(ALL) NOPASSWD: ALL

or::

  @group ALL =(ALL) NOPASSWD: ALL

Change user/primary group for executed command.
===============================================
::

  $ sudo -u $user -g $group $command

To allow this plase in /etc/sudoers::

  username ALL =(ALL:ALL) NOPASSWD: ALL