File: install-sqlite

package info (click to toggle)
hoteldruid 3.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,808 kB
  • sloc: php: 170,672; javascript: 2,296; sh: 304; xml: 52; makefile: 17
file content (12 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Verify the installation was successful.

set -e

if [ -e "/var/lib/hoteldruid/data/dati_connessione.php" ]; then
  echo "HotelDruid already installed!"
else

  curl --silent -d "lingua=en" "http://localhost/hoteldruid/creadb.php" | grep "Data inserted!"

fi