mirror of
https://codeberg.org/angestoepselt/imagestack.git
synced 2026-03-21 22:32:17 +00:00
12 lines
411 B
Bash
12 lines
411 B
Bash
#!/bin/bash
|
|
|
|
# === CONFIGURATION ===
|
|
LATE_TARGET_SCRIPT="/opt/late_command.sh"
|
|
TERMINAL="gnome-terminal"
|
|
# =====================
|
|
echo 'sudo /opt/late_command.sh' >> /home/computerspende/.bash_history
|
|
chown computerspende:computerspende /home/computerspende/.bash_history
|
|
curl -s http://10.7.3.101:8888/late_command.sh > $LATE_TARGET_SCRIPT
|
|
|
|
chmod 777 $LATE_TARGET_SCRIPT
|
|
chmod +x $LATE_TARGET_SCRIPT
|