- Modified the update.sh script to prepend 'sudo' to deployment commands for elevated permissions. - Ensured that all installation and update scripts are executed with the necessary privileges to avoid permission issues during execution.
10 lines
186 B
Bash
Executable File
10 lines
186 B
Bash
Executable File
#!/bin/bash
|
|
git fetch
|
|
git pull
|
|
sudo ./deploy-to-opt.sh
|
|
sudo ./install-service-ypchat.sh
|
|
sudo ./install.sh
|
|
sudo ./quick-update.sh
|
|
sudo ./fix-dependencies.sh
|
|
sudo systemctl restart ypchat
|