mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
8163bce5dc
- Fix and enable startup script - Fix permissions after installation
11 lines
114 B
Bash
11 lines
114 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case "$2" in
|
|
POST-INSTALL)
|
|
chown -R virtuoso:virtuoso ${PKG_PREFIX}/virtuoso
|
|
;;
|
|
esac
|