12 lines
258 B
Plaintext
12 lines
258 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
if [ ! -f /etc/firstboot ] ; then
|
||
|
echo Creating Airport database...
|
||
|
createuser -U postgres -D -l -R -S airport
|
||
|
createdb -U postgres -E utf8 -O airport airport
|
||
|
fi
|
||
|
|
||
|
su -c "/var/airport/bin/start-airport" airport
|
||
|
|
||
|
touch /etc/firstboot
|