~ubuntu-it-ask-devel/+junk/osqa-scripts

« back to all changes in this revision

Viewing changes to reset-db

  • Committer: Andrea Colangelo
  • Date: 2013-07-20 09:46:31 UTC
  • Revision ID: warp10@starfleet.andreacolangelo.com-20130720094631-axg6kgyc4r2pfiy3
Add reset-db function

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
# OSQA scripts - Manage easy a local instance of OSQA
3
 
# Copyright (C) 2013 Pietro Albini ~pietro98-albini <pietro98-albini@ubuntu-it.org>
4
 
 
5
 
# This program is free software: you can redistribute it and/or modify
6
 
# it under the terms of the GNU General Public License as published by
7
 
# the Free Software Foundation, either version 3 of the License, or
8
 
# (at your option) any later version.
9
 
 
10
 
# This program is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
# GNU General Public License for more details.
14
 
 
15
 
# You should have received a copy of the GNU General Public License
16
 
# along with this program.  If not, see [http://www.gnu.org/licenses/].
17
 
 
18
 
source "`dirname $0`/osqa-scripts.cfg" # Load configuration
19
 
 
20
 
sudo -u postgres dropdb $DB_NAME # Drop the old database
21
 
sudo -u postgres createdb -O $DB_OWNER $DB_NAME # Create the new database
22
 
 
23
 
cd $PATH_OSQA # Move to the osqa path
24
 
sudo python $PATH_OSQA/manage.py syncdb --all -v 0 --noinput # Populate the database
25
 
sudo python $PATH_OSQA/manage.py migrate forum --fake -v 0 # Insert base records