updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / mongodb-bin / mongodb.install
blob62c5f2bf3811eded912bc4b7b270c437f4bc9fea
1 # vim: syntax=sh
3 show_msg(){
4     if [ "$(arch)" != "x86_64" ]
5     then
6         cat <<END
7 ###########################################################################
8 # Warning: the 32 bit version of MongoDB is limited to about 2GB of data. #
9 # See http://blog.mongodb.org/post/137788967/32-bit-limitations           #
10 ###########################################################################
11 END
12     fi
15 post_install() {
16   useradd -r -g daemon -d /var/state/mongodb -s /bin/bash mongodb
17   chown -R mongodb:daemon /var/state/mongodb
19   show_msg
22 post_upgrade() {
23   chown -R mongodb:daemon /var/state/mongodb
25   show_msg
28 pre_remove() {
29     /etc/rc.d/mongodb stop
30     userdel mongodb