Rename bash scripts consistently

This commit is contained in:
Tom Wiesing 2022-06-27 13:38:33 +02:00
parent b8be1e641b
commit 01da5b6e91
7 changed files with 5 additions and 5 deletions

View file

@ -193,7 +193,7 @@ sudo docker image prune --all
To automatically rebuild all instances, use:
```bash
sudo bash /distillery/rebuild-all.sh
sudo bash /distillery/rebuild_all.sh
```
## Reserving an instance -- 'reserve.sh'

View file

@ -10,7 +10,7 @@ DISABLE_LOG=0
# update all the instances
for slug in $(sql_bookkeep_list_updateable); do
log_info "=> /bin/bash $DIR/blind-update.sh '$slug'"
/bin/bash "$DIR/blind-update.sh" "$slug";
log_info "=> /bin/bash $DIR/blind_update.sh '$slug'"
/bin/bash "$DIR/blind_update.sh" "$slug";
done

View file

@ -25,10 +25,10 @@ bash system_install.sh "$GRAPHDB_ZIP"
# rebuild all the systems
log_info " => Rebuilding all instances"
bash rebuild-all.sh
bash rebuild_all.sh
# perform all the blind updates
log_info " => Performing updates"
bash blind-update-all.sh
bash blind_update_all.sh
log_info " => Done, have a great week"