summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-05-10 17:35:29 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-05-10 17:35:29 -0500
commit2dbaa71d3fd9092e5fa5d79671ada8ceed9bdf69 (patch)
tree3937ff58e85f47764a49afbea2641c1550e72f83
parent0cb622f771024f739b84eb0522c85eb2768c2820 (diff)
libretools.conf updated
-rw-r--r--libretools.conf29
1 files changed, 14 insertions, 15 deletions
diff --git a/libretools.conf b/libretools.conf
index 0999040..8a7769f 100644
--- a/libretools.conf
+++ b/libretools.conf
@@ -50,7 +50,20 @@ ABSLIBREGIT=http://projects.parabolagnulinux.org/abslibre.git/
#COMMITCMD=git
#COMMITCMD=hg
-# Recommended SSH Config
+# Checks if vars aren't empty
+#
+for VAR in CHROOTDIR CHROOT CHCOPY CACHEDIR PARABOLAHOST LIBREDESTDIR \
+ LIBRESRCDIR BLACKLIST WORKDIR PATCHDIR REPOS ARCHES ABSLIBREGIT COMMITCMD DIFFTOOL; do
+
+ [[ -z ${!VAR} ]] && {
+ echo "Configure $VAR var in /etc/libretools.conf"
+ exit 1
+ }
+done
+
+source /usr/bin/libremessages
+
+## Recommended SSH Config follows
# SSH host, it's better if you have it configured on ~/.ssh/config
# with ControlMaster auto (and a shell opened somewhere else)
#
@@ -73,17 +86,3 @@ ABSLIBREGIT=http://projects.parabolagnulinux.org/abslibre.git/
# HostName parabolagnulinux.org
# User parabola
# IdentityFile ~/.ssh/id_rsa
-
-
-# Checks if vars aren't empty
-#
-for VAR in CHROOTDIR CHROOT CHCOPY CACHEDIR PARABOLAHOST LIBREDESTDIR \
- LIBRESRCDIR BLACKLIST WORKDIR PATCHDIR REPOS ARCHES ABSLIBREGIT COMMITCMD DIFFTOOL; do
-
- [[ -z ${!VAR} ]] && {
- echo "Configure $VAR var in /etc/libretools.conf"
- exit 1
- }
-done
-
-source /usr/bin/libremessages