summaryrefslogtreecommitdiffstats
path: root/tests/config.sh
blob: 19024dd9ba7259b4c7cd4b0763803fed9a211690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

set -e
set -x

sed -i 's/^MaxClients.*/MaxClients 1/' /etc/httpd/conf/httpd.conf
cp -p tests/auth.cgi /var/www/cgi-bin/auth.cgi
cp tests/pam-webl /etc/pam.d/webl
chmod a+x /var/log/httpd
cp tests/auth.conf /etc/httpd/conf.d/
useradd user1
echo user1:heslo1 | chpasswd
useradd bob
echo 'bob:Bobovo heslo' | chpasswd

NAME='liška'
if ! useradd --badname "$NAME" 2> /dev/null ; then
	NAME=liska
	useradd "$NAME"
fi
echo "$NAME:myši & zajíci" | chpasswd
chgrp apache /etc/shadow
chmod g+r /etc/shadow