Skip to content
Snippets Groups Projects
Commit 88e1f44a authored by Paul Beuchat's avatar Paul Beuchat
Browse files

Added comment to web interface installation script for removing a user from a group

parent 8f14b592
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ sudo -u www-data git clone https://...
# Add the necessary line to the "/etc/sudoers" file
# that allows the "www-data" user to execute
# "git pull" commands
www-data ALL=(www-data) /usr/bin/git pull
# >> www-data ALL=(www-data) /usr/bin/git pull
# Add the "www-data" user to the "plugdev" group
# NOTE: this is the group nominated in the udev
......@@ -23,7 +23,11 @@ www-data ALL=(www-data) /usr/bin/git pull
sudo usermod -a -G plugdev www-data
# To confirm the group allocation, view the file:
less /etc/group
# >> less /etc/group
# If you need to remove a user from a group, then:
# SYNTAX: >> deluser <username> <groupname>
# >> deluser www-data plugdev
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment