]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Change wording if debian-tor's homedir is wrong, do not print anything if it is ok.
authorPeter Palfrader <peter@palfrader.org>
Mon, 21 Jan 2008 14:46:49 +0000 (14:46 +0000)
committerPeter Palfrader <peter@palfrader.org>
Mon, 21 Jan 2008 14:46:49 +0000 (14:46 +0000)
Whitespace nazi found out about debian/tor.postinst.

svn:r13206

debian/changelog
debian/tor.postinst

index 764b316ca7d5e7e944b646ea679d3d9a6fe07761..2a711ba9a2163445f1d5afa28d508ce77b65fe4b 100644 (file)
@@ -4,8 +4,10 @@ tor (0.2.0.17-alpha-1+svn) experimental; urgency=low
     to have a uid between 100 and 999.  There is no good reason
     to require this.  If the local admin moves the system users/uid-space
     to some other range then they probably have a good reason for that.
+  * postinst: change wording if debian-tor's homedir is wrong, do not
+    print anything if it is ok.
 
- -- Peter Palfrader <weasel@debian.org>  Mon, 21 Jan 2008 15:43:52 +0100
+ -- Peter Palfrader <weasel@debian.org>  Mon, 21 Jan 2008 15:46:29 +0100
 
 tor (0.2.0.17-alpha-1) experimental; urgency=low
 
index f39659c271880b43c7edefc6e3f7237e0e1c1a82..0d2a4dd415358db393a100c2605596835e54e9e3 100644 (file)
@@ -9,24 +9,25 @@ home=`getent passwd debian-tor | cut -d ":" -f 6`
 # the sanit(ar)y checks otherwise we can safely create it.
 
 if [ "$uid" ]; then
-    if [ "$home" = "/var/lib/tor" ]; then
-        echo "debian-tor homedir check: ok"
-    else
-       echo "ERROR: debian-tor account has an invalid home directory!"
-       echo "Please check /usr/share/doc/tor/README.Debian on how to"
-       echo "correct this problem"
-       exit 1
-    fi
+       if [ "$home" = "/var/lib/tor" ]; then
+               :
+               #echo "debian-tor homedir check: ok"
+       else
+               echo "ERROR: debian-tor account has an unexpected home directory!"
+               echo "It should be '/var/lib/tor', but it is '$home'."
+               echo "Removing the debian-tor user might fix this, but the question"
+               echo "remains how you got into this mess to begin with."
+               exit 1
+       fi
 else
-    # what this might mean?? oh creating a system l^Huser!
-    adduser --quiet \
-            --system \
-            --disabled-password \
-            --home /var/lib/tor \
-           --no-create-home \
-           --shell /bin/bash \
-           --group \
-    debian-tor
+       adduser --quiet \
+               --system \
+               --disabled-password \
+               --home /var/lib/tor \
+               --no-create-home \
+               --shell /bin/bash \
+               --group \
+               debian-tor
 fi
 
 # ch{owning,moding} things around