Fetch audio utilities ok
[hvlinux.git] / stage3 / cis-milter-greylist
index 836fcdc..4bc471a 100755 (executable)
@@ -1,4 +1,6 @@
 #!/bin/sh
+set -o errexit
+
 # First argument of this script is the package name.
 
 # Reading system configuration informations, functions and package versions.
@@ -6,18 +8,16 @@ source ../sysinfos
 source ../functions
 source ../packages-list
 
-CUR_DIR=$(pwd)
-
 # Applying patches (if any)
-apply_patches ${1} &&
+apply_patches ${1}
 
-cd ${LFS_TMP}/${1} &&
+cd ${LFS_TMP}/${1}
 ./configure \
     --prefix=/usr \
     --sysconfdir=/etc \
-    --localstatedir=/var/run &&
-make &&
-make install &&
+    --localstatedir=/var/run
+make
+make install
 
 # Configuration file
 cat > /etc/mail/greylist.conf << EOF
@@ -124,12 +124,11 @@ acl whitelist default
 EOF
 
 # Bootscript
-install -v -m740 ${CUR_DIR}/bootscripts/milter-greylist /etc/rc.d/init.d &&
+install -v -m740 ${SCRDIR}/bootscripts/milter-greylist /etc/rc.d/init.d
 
 # script-name start stop
-bootscript_add_rc3 milter-greylist 57 33 &&
+bootscript_add_rc3 milter-greylist 57 33
 
 ldconfig
 
-# Return last error
 exit $?