blob: 85f3fcdd661133785ef77b31639cd1e327015978 [file] [log] [blame]
Dzmitry Stremkouski1ca901c2018-11-05 13:20:52 +01001#!/bin/bash -xe
2# Speedup reverse hostname lookup
3sed -i "s/127.0.0.1.*/127.0.0.1 localhost $(hostname)/" /etc/hosts
4# Enabling password auth for kitchen user
5sed -i 's/PasswordAuthentication.*/PasswordAuthentication yes/' /etc/ssh/sshd_config
6# Disable sshd NS lookups
7echo "UseDNS no" >> /etc/ssh/sshd_config
8service ssh restart
9# Create user 'kitchen' with password 'kitchen'
10useradd -m -G adm,sudo -p '$6$DqOdqb/l$hOpDWFPeC8/45Oo8NbqZyqLZxYd.Vtlujf9A4OdwUKgBjRcETuc9Gd2C7OyI99MY2N/pACrbV8WymqV.H1XZ1.' -s /bin/bash kitchen
11# Passwordless sudo for user 'kitchen'
12echo "kitchen ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/99-kitchen
13# Secure kitchen home
14chown kitchen:root /home/kitchen -R
15chmod 0700 /home/kitchen