upnp-renderer/setup.sh

148 lines
4.8 KiB
Bash
Raw Normal View History

2022-03-13 13:02:57 +01:00
#!/usr/bin/env bash
2021-11-20 15:15:51 +01:00
# The purpose of this script is to setup our UPnP AV/DLNA renderer on a blank Armbian.
# This script is to be run as root.
# (Keep in mind that default root password is 1234)
# Flash SBC's SD with Armbian and copy this script as well as conf-sync.sh to /root
# YOU SHOULD REMOVE THIS SCRIPT AFTER SETUP
# Functions
init() {
echo "Starting initialization"
echo $fqdn > /etc/hostname
sed -i -e "s/=default_hostname/$fqdn $hostname/g" /etc/hosts
localectl set-keymap $keymap
timedatectl set-timezone $timezone
systemctl disable apt-daily-upgrade.timer
}
install_packages() {
echo "Starting packages installation"
sed -i -e "s/$deb_apt_default_repo/$deb_apt_repo/g" /etc/apt/sources.list
2021-11-20 15:35:34 +01:00
wget -P /usr/share/keyrings/ https://www.lesbonscomptes.com/pages/lesbonscomptes.gpg
wget -P /etc/apt/sources.list.d/ https://www.lesbonscomptes.com/upmpdcli/pages/upmpdcli-rbullseye.list
sed -i -e "s/deb-src/#deb-src/g" /etc/apt/sources.list.d/upmpdcli-rbullseye.list
2021-11-20 15:15:51 +01:00
apt update
apt upgrade -y
apt install -y vim tree tmux neofetch mpd upmpdcli
}
add_users() {
echo "Adding users"
useradd -U -G sudo -m -s /bin/bash $user
chmod 700 /home/$user
2022-04-27 21:01:37 +02:00
echo "Let's define a password for $user as we are about to run sudo with it. It can of course be changed after setup."
passwd $user
2021-11-20 15:15:51 +01:00
}
2022-04-27 21:01:37 +02:00
get_sync() {
echo "Getting and deploying sync configuration"
2021-11-20 15:15:51 +01:00
sudo -H -u $user mkdir $sync_directory_path
2022-04-27 21:01:37 +02:00
sudo -H -u $user git clone https://gitea.kto.black/adminconf/rcs-general.git $sync_directory_path/rcs-general
sudo -H -u $user $sync_directory_path/rcs-general/install.sh
sudo -H -u $user git clone https://gitea.kto.black/adminconf/conf-sync.git $sync_directory_path/conf-sync
sudo -H -u $user cp $sync_directory_path/conf-sync/variables.conf.template \
$sync_directory_path/conf-sync/variables.conf
sudo -H -u $user sed -i -e "s/\"desktop\"/\"server\"/g" $sync_directory_path/conf-sync/variables.conf
sudo -H -u $user $sync_directory_path/conf-sync/install.sh
2021-11-20 15:15:51 +01:00
}
set_upmpdcli_service() {
echo "Setting custom upmpdcli service unit"
mkdir $systemd_units_path/upmpdcli.service.d
echo "[Service]" > $systemd_units_path/upmpdcli.service.d/exec.conf
echo "ExecStart=" >> $systemd_units_path/upmpdcli.service.d/exec.conf
echo "ExecStart=/usr/bin/upmpdcli -f %H" >> $systemd_units_path/upmpdcli.service.d/exec.conf
}
2022-04-27 21:01:37 +02:00
set_upmpdcli-restart_service() {
echo "Setting custom upmpdcli-restart service unit"
cp $run_directory_path/restart-upmpdcli.service $systemd_units_path/
cp $run_directory_path/restart-upmpdcli.timer $systemd_units_path/
systemctl daemon-reload
systemctl enable restart-upmpdcli.timer
}
2021-11-20 15:15:51 +01:00
set_alsa_conf() {
echo "Setting ALSA configuration"
2021-11-20 15:35:34 +01:00
echo "defaults.pcm.card $audio_device" > $alsa_conf_file_path
echo "defaults.ctl.card $audio_device" >> $alsa_conf_file_path
2021-11-20 15:15:51 +01:00
}
ssh_pubkey() {
echo "Getting SSH public key"
sudo -H -u $user mkdir /home/$user/.ssh
sudo -H -u $user wget -P /home/$user/.ssh $remote_pubkey_location/$remote_pubkey
sudo -H -u $user mv /home/$user/.ssh/$remote_pubkey /home/$user/.ssh/authorized_keys
}
2022-04-27 21:01:37 +02:00
set_sshd_conf() {
echo "Editing OpenSSH daemon config..."
sed -i -e "s/#PasswordAuthentication yes/PasswordAuthentication no/g" /etc/ssh/sshd_config
sed -i -e "s/PermitRootLogin yes/PermitRootLogin no/g" /etc/ssh/sshd_config
}
set_cpufreq() {
if [ $default_hostname = 'orangepizero' ]; then
echo "Setting CPU frequency to performance"
sed -i -e "s/GOVERNOR=ondemand/GOVERNOR=performance/g" /etc/default/cpufrequtils
fi
}
2021-11-20 15:15:51 +01:00
# Only run if the user is root
if [[ $USER != 'root' ]] ; then
echo "You must run this script as root!"
exit 1
fi
2021-11-20 15:38:23 +01:00
echo "You are about to deploy uPnP renderer."
2021-11-20 15:15:51 +01:00
run_directory_path=$(pwd)
# Set parameters
default_hostname='orangepizero'
hostname='pi2'
2022-04-27 21:01:37 +02:00
fqdn='pi2.jab.kto.black'
2021-11-20 15:15:51 +01:00
keymap='fr'
timezone='Europe/Paris'
2021-11-20 15:35:34 +01:00
deb_apt_default_repo='deb.debian.org'
2021-11-20 15:15:51 +01:00
deb_apt_repo='ftp.fr.debian.org'
user='alex'
sync_directory_path="/home/$user/.sync"
systemd_units_path='/etc/systemd/system'
audio_device='0'
alsa_conf_file_path='/etc/asound.conf'
remote_pubkey_location='https://keys.kto.black'
remote_pubkey='home.pub'
# Main process
# You should comment below what you do not want to happen
init
install_packages
add_users
2022-04-27 21:01:37 +02:00
get_sync
2021-11-20 15:15:51 +01:00
set_upmpdcli_service
2022-04-27 21:01:37 +02:00
set_upmpdcli-restart_service
2021-11-20 15:15:51 +01:00
set_alsa_conf
ssh_pubkey
2022-04-27 21:01:37 +02:00
set_sshd_conf
set_cpufreq
2021-11-20 15:15:51 +01:00
echo ""
echo "We're all good here!"
echo "You should now:"
echo "* lock root account"
echo "* reboot the SBC"
echo "And perhaps:"
2022-04-27 21:01:37 +02:00
echo "* set a new password for $user"
2021-11-20 15:15:51 +01:00
echo "* set htop at your convenience"
2022-04-27 21:01:37 +02:00
echo "* remove password for sudo" # TODO we should automate that, with a flag
2021-11-20 15:15:51 +01:00
echo "* set up Wi-Fi connection"
2022-04-27 21:01:37 +02:00
echo " * and then you may want to check on $sync_directory_path/auto-disable-wifi"
2021-11-20 15:15:51 +01:00
echo "Please also note that default audio device has been set to $audio_device"
echo "If you wish to change this, you may edit /etc/asound.conf"
exit 0