diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/tor/ipkg |
Initial import
Diffstat (limited to 'package/tor/ipkg')
-rw-r--r-- | package/tor/ipkg/tor.conffiles | 1 | ||||
-rw-r--r-- | package/tor/ipkg/tor.control | 5 | ||||
-rw-r--r-- | package/tor/ipkg/tor.postinst | 24 |
3 files changed, 30 insertions, 0 deletions
diff --git a/package/tor/ipkg/tor.conffiles b/package/tor/ipkg/tor.conffiles new file mode 100644 index 000000000..2954287e6 --- /dev/null +++ b/package/tor/ipkg/tor.conffiles @@ -0,0 +1 @@ +/etc/tor/torrc diff --git a/package/tor/ipkg/tor.control b/package/tor/ipkg/tor.control new file mode 100644 index 000000000..bd1f79cbe --- /dev/null +++ b/package/tor/ipkg/tor.control @@ -0,0 +1,5 @@ +Package: tor +Priority: optional +Section: net +Description: An anonymous Internet communication system +Depends: libevent, libopenssl, libpthread, zlib diff --git a/package/tor/ipkg/tor.postinst b/package/tor/ipkg/tor.postinst new file mode 100644 index 000000000..9ca10117b --- /dev/null +++ b/package/tor/ipkg/tor.postinst @@ -0,0 +1,24 @@ +#!/bin/sh +. $IPKG_INSTROOT/etc/functions.sh +add_rcconf tor tor NO + +# do not change below +# check if we are on real system +if [[ -z $IPKG_INSTROOT ]]; then + # create copies of passwd and group, if we use squashfs + rootfs=`mount |awk '/root/ { print $5 }'` + if [ "$rootfs" = "squashfs" ]; then + if [ -h /etc/group ]; then + rm /etc/group + cp /rom/etc/group /etc/group + fi + if [ -h /etc/passwd ]; then + rm /etc/passwd + cp /rom/etc/passwd /etc/passwd + fi + fi +fi + +gid=$(get_next_gid) +add_group tor $gid +add_user tor $(get_next_uid) $gid /tmp/.tor |