You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
248 B
8 lines
248 B
4 years ago
|
#!/bin/sh -eux
|
||
|
|
||
|
sed -i -e '/Defaults\s\+env_reset/a Defaults\texempt_group=sudo' /etc/sudoers;
|
||
|
|
||
|
# Set up password-less sudo for the vagrant user
|
||
|
echo 'vagrant ALL=(ALL) NOPASSWD:ALL' >/etc/sudoers.d/99_vagrant;
|
||
|
chmod 440 /etc/sudoers.d/99_vagrant;
|