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