f79cc8a353
Instead of having everything in the root directory, split them in seperate directories (appliances, scripts, & configs). This makes things a little tidier. Also added a now Makefile target, appliance-list, that prints a list of the available appliances. The split directory change made this easier.
10 lines
266 B
Bash
Executable File
10 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DPVER=7.27
|
|
|
|
echo Configuring Postgres for Drupal
|
|
createuser --no-adduser --no-createdb --no-createrole -U postgres drupal
|
|
createdb --encoding=UNICODE --owner=drupal -U postgres drupal
|
|
|
|
mv /etc/local.d/firstboot.start /etc/local.d/firstboot.start.disabled
|