SW: add f2fs-tools to GRML_SMALL + GRML_FULL
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 20-sudo
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/20-sudo
3 # Purpose:       configure sudo setup of the live-system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 set -u
10 set -e
11 . "$GRML_LIVE_CONFIG"
12
13 fcopy -v /etc/sudoers
14 sed -i "s/\$USERNAME/$USERNAME/" $target/etc/sudoers
15 chmod 440 $target/etc/sudoers
16 chown 0:0 $target/etc/sudoers
17
18 ## END OF FILE #################################################################
19 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2