af13aa489d
ownCloud gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web.
15 lines
265 B
Text
15 lines
265 B
Text
#!@SH@
|
|
#
|
|
# $NetBSD: INSTALL,v 1.1.1.1 2011/12/11 14:29:21 ryoon Exp $
|
|
|
|
WWWGRP="@WWWGRP@"
|
|
WWWOWN="@WWWOWN@"
|
|
OC_DIR="@PREFIX@/@OC_DIR@"
|
|
|
|
case "${STAGE}" in
|
|
POST-INSTALL)
|
|
cd ${OC_DIR} &&
|
|
${CHOWN} -R ${WWWOWN} ${OC_DIR} &&
|
|
${CHGRP} -R ${WWWGRP} ${OC_DIR}
|
|
;;
|
|
esac
|