clic-rpi-image/stage3/00-install-yunohost/00-run.sh
2018-04-02 19:15:23 +02:00

12 lines
238 B
Bash
Executable file

#!/bin/bash -e
on_chroot << EOF
cd /tmp/
wget -O install_yunohost https://install.yunohost.org/stretch
chmod +x /tmp/install_yunohost
./install_yunohost -a
rm -f /etc/ssh/ssh_host_*
apt-get clean
find /var/log -type f -exec rm {} \;
EOF