1
0
Fork 0
mirror of https://github.com/dbarzin/pandora-box.git synced 2025-07-19 13:29:42 +02:00

Update install.sh

This commit is contained in:
Didier Barzin 2023-03-05 16:54:41 +01:00 committed by GitHub
parent 41511081a4
commit f4ab95b840
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -227,7 +227,7 @@ systemctl daemon-reload
systemctl enable pandora systemctl enable pandora
# Do not print messages on console # Do not print messages on console
echo "mesg n" >> /home/$SUDO_USER/.profile echo "mesg n" >> /home/$SUDO_USER/.bashrc
# Start Pandora-box on getty1 at boot # Start Pandora-box on getty1 at boot
mkdir -p /etc/systemd/system/getty@tty1.service.d mkdir -p /etc/systemd/system/getty@tty1.service.d
@ -237,12 +237,11 @@ echo "ExecStart=-/sbin/agetty --autologin pandora --noclear %I $TERM" >> /etc/sy
# echo "ExecStart=-su - pandora -c ./pandora-box/pandora-box.py" >> /etc/systemd/system/getty@tty1.service.d/override.conf # echo "ExecStart=-su - pandora -c ./pandora-box/pandora-box.py" >> /etc/systemd/system/getty@tty1.service.d/override.conf
# Start pandora from bashrc # Start pandora from bashrc
su - $SUDO_USER -c 'echo "export PATH=\"\$HOME/.local/bin:{\$PATH}\""' >> ~/.bashrc echo "export PATH=\"\$HOME/.local/bin:{\$PATH}\"" >> /home/$SUDO_USER/.bashrc
su - $SUDO_USER -c 'echo "pandora-box/pandora-box.py" >> ~/.bashrc' echo "pandora-box/pandora-box.py" >> /home/$SUDO_USER/.bashrc
# Copy ini file # Copy ini file
cp pandora-box.ini.curses pandora-box.ini cp pandora-box.ini.curses pandora-box.ini
# Reboot # Reboot
echo "You may reboot the server." echo "You may reboot the server."