2012-11-09 11:04:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Add the stack user we recommend folk use.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o xtrace
|
|
|
|
|
2013-02-06 06:30:30 +00:00
|
|
|
useradd -m stack -s /bin/bash
|
|
|
|
|
2012-11-09 11:04:13 +00:00
|
|
|
passwd stack <<EOF
|
|
|
|
stack
|
|
|
|
stack
|
|
|
|
EOF
|
|
|
|
|
2013-02-06 06:30:30 +00:00
|
|
|
|
|
|
|
cat > /etc/sudoers.d/stack <<eof
|
|
|
|
# the stack user sometimes requires passwordless
|
|
|
|
# sudo for scripted operations.
|
|
|
|
stack ALL=(ALL) NOPASSWD:ALL
|
|
|
|
eof
|
|
|
|
|
2013-03-04 07:56:11 +00:00
|
|
|
chmod 0440 /etc/sudoers.d/stack
|
2013-02-06 06:30:30 +00:00
|
|
|
visudo -c
|
2013-03-04 07:56:11 +00:00
|
|
|
|
|
|
|
if [ -e "/tmp/in_target.d/ssh-authorized-keys" ]; then
|
|
|
|
mkdir -p /home/stack/.ssh
|
|
|
|
cat /tmp/in_target.d/ssh-authorized-keys >> /home/stack/.ssh/authorized_keys
|
|
|
|
chown -R stack:stack /home/stack/.ssh
|
|
|
|
fi
|