11 lines
201 B
Bash
11 lines
201 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" != "configure" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Touch and set permisions on default log files on installation
|
|
update-rc.d phyre defaults > /dev/null
|
|
invoke-rc.d phyre start || true
|