17 lines
480 B
Bash
17 lines
480 B
Bash
#!/bin/bash
|
|
# autorun2
|
|
# Rescue CD Backup & Restore Utility server startup
|
|
# version 7.2.5
|
|
# Rod Wright 1/16/2024
|
|
# Refer to CHANGELOG file for details.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
/etc/init.d/NetworkManager stop
|
|
export PATH=$PATH:/root/rescuebru
|
|
rm -f /root/.config/autostart/Terminal.desktop
|
|
cp /root/rbruserver.desktop /root/.config/autostart/
|
|
rm -f /root/.config/autostart/Terminal.desktop
|
|
/usr/bin/eject >/dev/null 2>&1
|
|
|
|
|