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.
35 lines
738 B
35 lines
738 B
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
. .drone/common.sh
|
|
|
|
# set FQDN in /etc/hosts
|
|
add_fqdn_to_hosts "$(get_ip_addr $(hostname))" phosphoric-acid
|
|
add_fqdn_to_hosts "$(get_ip_addr auth1)" auth1
|
|
add_fqdn_to_hosts "$(get_ip_addr coffee)" coffee
|
|
# mail container doesn't run in CI
|
|
if [ -z "$CI" ]; then
|
|
add_fqdn_to_hosts $(get_ip_addr mail) mail
|
|
fi
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt update
|
|
apt install -y netcat-openbsd
|
|
auth_setup phosphoric-acid
|
|
|
|
# initialize the skel directory
|
|
shopt -s dotglob
|
|
mkdir -p /users/skel
|
|
cp /etc/skel/* /users/skel/
|
|
|
|
# create directories for users
|
|
for user in ctdalek regular1 exec1; do
|
|
mkdir -p /users/$user
|
|
chown $user:$user /users/$user
|
|
done
|
|
|
|
sync_with coffee
|
|
if [ -z "$CI" ]; then
|
|
sync_with mail
|
|
fi
|
|
|