summaryrefslogtreecommitdiffstats
path: root/chat-irc/bitlbee/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'chat-irc/bitlbee/INSTALL')
-rwxr-xr-xchat-irc/bitlbee/INSTALL15
1 files changed, 7 insertions, 8 deletions
diff --git a/chat-irc/bitlbee/INSTALL b/chat-irc/bitlbee/INSTALL
index 875b94fdc3..1ef9054c4d 100755
--- a/chat-irc/bitlbee/INSTALL
+++ b/chat-irc/bitlbee/INSTALL
@@ -1,19 +1,18 @@
default_install &&
-# repertory for bitlbee to store personnal datas of each user
+# repertory for bitlbee to store personal datas of each user
# allow bitlbee to write in by changing owner
-if ! [ -d /var/lib/bitlbee ]; then
- mkdir /var/lib/bitlbee &&
- chown nobody.nogroup /var/lib/bitlbee
+if ! [ -d "$INSTALL_ROOT/var/lib/bitlbee" ]; then
+ install -vm 700 -d -o nobody -g nogroup "$INSTALL_ROOT/var/lib/bitlbee"
fi &&
# default configuration files installation (bitlbee.conf and motd.txt)
# files removed when dispelled if not modified by user
-if [ -f /etc/bitlbee/bitlbee.conf ]; then
- echo "A Bitlbee configuration file already exists"
+if [ -f "$INSTALL_ROOT/etc/bitlbee/bitlbee.conf" ]; then
+ message "${MESSAGE_COLOR}Bitlbee configuration file already exists!${DEFAULT_COLOR}"
else
make install-etc
fi
-if [[ "$BITLBEE_BITLBEED" == y ]] ; then
- install utils/bitlbeed /usr/sbin/bitlbeed
+if [[ "$BITLBEE_BITLBEED" == y ]]; then
+ install -vm 755 "utils/bitlbeed" "$INSTALL_ROOT/usr/sbin/bitlbeed"
fi