projects
/
fai-configs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
added inital isntall for gmg, no configfile yet
[fai-configs.git]
/
scripts
/
GMG
/
00_create_psql_user.sh
1
#!/bin/bash
2
3
# Create the GMG user
4
$ROOTCMD
sudo
-
u postgres createuser
-
A
-
D mediagoblin
5
# Create GMG database
6
$ROOTCMD
sudo
-
u postgres createdb
-
E UNICODE
-
O mediagoblin mediagoblin
7
8