Rename bash scripts consistently
This commit is contained in:
parent
b8be1e641b
commit
01da5b6e91
7 changed files with 5 additions and 5 deletions
|
|
@ -193,7 +193,7 @@ sudo docker image prune --all
|
||||||
To automatically rebuild all instances, use:
|
To automatically rebuild all instances, use:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo bash /distillery/rebuild-all.sh
|
sudo bash /distillery/rebuild_all.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
## Reserving an instance -- 'reserve.sh'
|
## Reserving an instance -- 'reserve.sh'
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ DISABLE_LOG=0
|
||||||
|
|
||||||
# update all the instances
|
# update all the instances
|
||||||
for slug in $(sql_bookkeep_list_updateable); do
|
for slug in $(sql_bookkeep_list_updateable); do
|
||||||
log_info "=> /bin/bash $DIR/blind-update.sh '$slug'"
|
log_info "=> /bin/bash $DIR/blind_update.sh '$slug'"
|
||||||
/bin/bash "$DIR/blind-update.sh" "$slug";
|
/bin/bash "$DIR/blind_update.sh" "$slug";
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
@ -25,10 +25,10 @@ bash system_install.sh "$GRAPHDB_ZIP"
|
||||||
|
|
||||||
# rebuild all the systems
|
# rebuild all the systems
|
||||||
log_info " => Rebuilding all instances"
|
log_info " => Rebuilding all instances"
|
||||||
bash rebuild-all.sh
|
bash rebuild_all.sh
|
||||||
|
|
||||||
# perform all the blind updates
|
# perform all the blind updates
|
||||||
log_info " => Performing updates"
|
log_info " => Performing updates"
|
||||||
bash blind-update-all.sh
|
bash blind_update_all.sh
|
||||||
|
|
||||||
log_info " => Done, have a great week"
|
log_info " => Done, have a great week"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue