summaryrefslogtreecommitdiffstats
path: root/debian/radosgw.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/radosgw.postinst')
-rw-r--r--debian/radosgw.postinst17
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/radosgw.postinst b/debian/radosgw.postinst
new file mode 100644
index 000000000..3f1551269
--- /dev/null
+++ b/debian/radosgw.postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+set -e
+
+if [ "${1}" = "configure" ] ; then
+ [ -f "/etc/default/ceph" ] && . /etc/default/ceph
+ [ -z "$SERVER_USER" ] && SERVER_USER=ceph
+ [ -z "$SERVER_GROUP" ] && SERVER_GROUP=ceph
+ if ! dpkg-statoverride --list /var/lib/ceph/radosgw >/dev/null; then
+ chown $SERVER_USER:$SERVER_GROUP /var/lib/ceph/radosgw
+ fi
+fi
+#DEBHELPER#
+
+exit 0
+
+