summarylogtreecommitdiffstats
path: root/pagure-sqlite.install
blob: 612a3b66c13ed51f7d58c3e3561824e74548a2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
post_install() {
	cat <<- EOF
		Te setup using SQLite use:

		Configure Pagure in /etc/pagure/pagure.cfg and /etc/pagure/alembic.ini
		
		\$ python /usr/share/pagure/createdb.py --initial -c /etc/pagure/pagure.cfg -i /etc/pagure/alembic.ini
	EOF
}

post_upgrade() {
	cat <<- EOF
		Update Pagure database format using:
		
		\$ python /usr/share/pagure/createdb.py -c /etc/pagure/pagure.cfg
	EOF
}

# vim : ts=4 sw=4 noet