aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2011-01-15 16:24:19 +0100
committerMartin Willi <martin@revosec.ch>2011-01-17 18:08:17 +0100
commit2b52d5cb416cc16c3bb4732a41f0f981371b3648 (patch)
treea98268d71239857a0d196cab67d3989c27eea7c7 /configure.in
parent64e06d4f8fb72812e860be2bbd1d4d7282b90bc5 (diff)
downloadstrongswan-2b52d5cb416cc16c3bb4732a41f0f981371b3648.tar.bz2
strongswan-2b52d5cb416cc16c3bb4732a41f0f981371b3648.tar.xz
Do not install config files with user/group, as it might not exist on build machine
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in18
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.in b/configure.in
index bdb9d61f3..9a7f8d8e7 100644
--- a/configure.in
+++ b/configure.in
@@ -204,24 +204,6 @@ else
AC_MSG_RESULT([not found])
fi
-dnl translate user/group to numercial ids
-AC_MSG_CHECKING([for uid of user "$ipsecuser"])
-ipsecuid=`id -u $ipsecuser 2>/dev/null`
-if test -n "$ipsecuid"; then
- AC_MSG_RESULT([$ipsecuid])
- AC_SUBST(ipsecuid)
-else
- AC_MSG_ERROR([not found])
-fi
-AC_MSG_CHECKING([for gid of group "$ipsecgroup"])
-ipsecgid=`$EGREP "^$ipsecgroup:" /etc/group | $AWK -F: '{ print $3 }'`
-if test -n "$ipsecgid"; then
- AC_MSG_RESULT([$ipsecgid])
- AC_SUBST(ipsecgid)
-else
- AC_MSG_ERROR([not found])
-fi
-
dnl =========================
dnl dependency calculation
dnl =========================