11 lines
169 B
Bash
Executable file
11 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PSQL="psql -U manned -Awtq"
|
|
|
|
|
|
./arch.sh current
|
|
./debian.sh current
|
|
./ubuntu.sh current
|
|
|
|
echo "============ Updating SQL indices"
|
|
$PSQL -f update_indices.sql
|