From MAILER-DAEMON Thu Jul 11 09:41:52 2013 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1UxH84-00081V-LI for mharc-jailkit-users@gnu.org; Thu, 11 Jul 2013 09:41:52 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43511) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxH7y-00081M-Vm for jailkit-users@nongnu.org; Thu, 11 Jul 2013 09:41:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxH7u-0008VV-JY for jailkit-users@nongnu.org; Thu, 11 Jul 2013 09:41:46 -0400 Received: from mail-wi0-x233.google.com ([2a00:1450:400c:c05::233]:51000) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxH7u-0008UG-95 for jailkit-users@nongnu.org; Thu, 11 Jul 2013 09:41:42 -0400 Received: by mail-wi0-f179.google.com with SMTP id hj3so7564253wib.6 for ; Thu, 11 Jul 2013 06:41:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=d15.biz; s=gmail; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=h/GaxPT0nimDXD9PNfGKaWOUab0GYTXhAyHlNA76yAg=; b=V8CW7CAC08/NgM634q9KD1XVwDMiNmWb7c71+MRWPwCCyI4Ab9/6JxOlfIZdk7TD0J sEQ319BSDlZ2hntttWV9r9gKGdXBCzxbuSZCC4QO2b6feLW+BzH7Gfwbxez1/SIUkio0 /e++XHo4NHKdq8cgj6/TnucQYSGn/m7mHmmyY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:x-gm-message-state; bh=h/GaxPT0nimDXD9PNfGKaWOUab0GYTXhAyHlNA76yAg=; b=UybkBAqxC1/7+XWvoDLCF2m9t1g5ZdNDnBSEZ9Hh+Wwc1I1UvnlbJlXu7OT3PRJs+Y KNbtkf3LsSWMaiYBt8OOjeFRPWcQZRAh0wb/bHy6pvbibgoEVKCgjcdqgr5WYkb8WAXR PXtGpNbz8S20z+mbZ77DGmUn2qZK8v+yKgh9ExHOvel8DNkGvRtAXS5DIcykjqJa2SK8 M7GhSInohnvsRwtmWaIrgZmptl+dTrdUhMcDNr08aKsY6YaP7UHe5VfMYy3bzzl5+wH5 h5uBP7jzSPzrIblMDDmWdD6f2eoCsu8+7sEnKhtR9EWaQVcGsSgtjEeK351W4qdTvZK3 axvw== MIME-Version: 1.0 X-Received: by 10.181.11.227 with SMTP id el3mr15658780wid.31.1373550100547; Thu, 11 Jul 2013 06:41:40 -0700 (PDT) Sender: daniel@d15.biz Received: by 10.216.239.130 with HTTP; Thu, 11 Jul 2013 06:41:40 -0700 (PDT) Date: Thu, 11 Jul 2013 23:41:40 +1000 X-Google-Sender-Auth: OylrZqdm7CNaBj9wZCHK5X784xA Message-ID: From: Daniel Lo Nigro To: jailkit-users@nongnu.org Content-Type: multipart/alternative; boundary=f46d043be25ed325d104e13c8d82 X-Gm-Message-State: ALoCoQnafKdaKZYvWxq9yMTesKrMlY9kny6bw4higl8Bnr84flNx2b6RvKMZ/kxzeKlneZBCRaFE X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::233 Subject: [Jailkit-users] `git clone` allowing access to files outside chroot X-BeenThere: jailkit-users@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: jailkit-users@nongnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2013 13:41:51 -0000 --f46d043be25ed325d104e13c8d82 Content-Type: text/plain; charset=ISO-8859-1 Hello! Firstly, thanks for Jailkit. I stumbled on it while searching for how to create a chroot jail. Wish I had found it earlier, it's a very handy tool! I'm using Debian Testing. Here's what I've done for my setup: jk_init -v -j /home/jail basicshell editors extendedshell netutils ssh sftp scp git jk_jailuser -m -j /home/jail/ -s /bin/bash test Connecting via SSH and SFTP are both fine, and the user is jailed as expected. There is a Git repository at */home/test/git/example* in the jail. When I try to clone this Git repository, it fails: daniel@DanielPC:/tmp$ git clone ssh://example.com/home/test/git/example . Cloning into '.'... fatal: '/home/test/git/example' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. However, if I use the full path (/home/jail/...), it works: daniel@DanielPC:/tmp$ git clone ssh:// example.com/home/jail/home/test/git/example . Cloning into '.'... remote: Counting objects: 6, done. remote: Compressing objects: 100% (2/2), done. remote: Total 6 (delta 0), reused 0 (delta 0) Receiving objects: 100% (6/6), done. This leads me to believe that Git isn't being jailed for some reason. Any ideas on how to fix my configuration so that SSH login shells and SFTP are jailed, and Git is also jailed? Thanks! -- Regards, Daniel Lo Nigro http://dan.cx/ | http://twitter.com/Daniel15 --f46d043be25ed325d104e13c8d82 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hello!

Firstly, th= anks for Jailkit. I stumbled on it while searching for how to create a chro= ot jail. Wish I had found it earlier, it's a very handy tool!

I'm using Debian Testing. Here's what I've= done for my setup:

jk_init -v -j /home/jail basicshell editors extendedshe= ll netutils ssh sftp scp git
jk_jailuser = =A0-m -j /home/jail/ -s /bin/bash test

Connecting via SSH and SFTP are both fine, and the user is jail= ed as expected. There is a Git repository at /home/test/git/example = in the jail. When I try to clone this Git repository, it fails:

= daniel@DanielPC:/tmp$ git clone ssh://example.com/home/test/git/example .
Cloning into '.'...
fatal: '/home/test/git/examp= le' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access ri= ghts and the repository exists.

Howev= er, if I use the full path (/home/jail/...), it works:
daniel@DanielPC:/tmp$ git clone = ssh://exampl= e.com/home/jail/home/test/git/example .
Cloning into '.'...
remote: Counting objects: 6, don= e.
remote: Compressi= ng objects: 100% (2/2), done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (6/6), d= one.

This leads me to believe t= hat Git isn't being jailed for some reason. Any ideas on how to fix my = configuration so that SSH login shells and SFTP are jailed, and Git is also= jailed?

Thanks!

--f46d043be25ed325d104e13c8d82-- From MAILER-DAEMON Thu Jul 11 11:52:13 2013 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1UxJAD-0007cz-Dc for mharc-jailkit-users@gnu.org; Thu, 11 Jul 2013 11:52:13 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxJAA-0007c1-S0 for jailkit-users@nongnu.org; Thu, 11 Jul 2013 11:52:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxJA9-0001AD-2m for jailkit-users@nongnu.org; Thu, 11 Jul 2013 11:52:10 -0400 Received: from mail-ob0-f170.google.com ([209.85.214.170]:45230) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxJA8-00015u-Sb for jailkit-users@nongnu.org; Thu, 11 Jul 2013 11:52:09 -0400 Received: by mail-ob0-f170.google.com with SMTP id ef5so10164585obb.1 for ; Thu, 11 Jul 2013 08:52:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:content-type:x-gm-message-state; bh=RfBlNSOEohMHhg7suLHv3PD1Z+vK/I476wYe4HjoqTk=; b=TilinCwd2m1E9YWzeNZ3izwJG06VhGxJ6FFgB0xtfHwUyraQ09DeaaZwLMMWUStEGp RZo1tGLnvaGPnco07g6uMWk5xBwCPfuzrWhZZsCJFX5yoOFl0B/UpNA39gF3Zm/hrDZi Ekxd0aJ62DZewNKSbwlCijt646cFF1PhAIIAFwYldHPUceGQXU8cGOscTRjNf4jLm4/w MktsOtN7lrJ9xuiPIDsJ/mJ4E+50Cgnrj9eqi7A3siiCztaV8nY+ITnRGQjpDBCB9eX0 AWGU3vvj+j7nvfV8pDCl9CbRn5SF85t0KQzrmrpNtxTrsym1o3H1LXeMq1wvowezgPxe XgOg== MIME-Version: 1.0 X-Received: by 10.182.220.199 with SMTP id py7mr32494624obc.92.1373557926635; Thu, 11 Jul 2013 08:52:06 -0700 (PDT) Received: by 10.76.69.73 with HTTP; Thu, 11 Jul 2013 08:52:06 -0700 (PDT) X-Originating-IP: [184.57.106.76] In-Reply-To: References: Date: Thu, 11 Jul 2013 11:52:06 -0400 Message-ID: From: Chris Tankersley To: jailkit-users@nongnu.org Content-Type: multipart/alternative; boundary=001a11c334aa4bbe5e04e13e60b4 X-Gm-Message-State: ALoCoQnpAIbn64cP0j4kgcO7ZS7qztX33B/D5h2Xlmaw44Ir6DWSszQ61g/Db2RxNTpbmXCMlNgh X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.214.170 Subject: Re: [Jailkit-users] `git clone` allowing access to files outside chroot X-BeenThere: jailkit-users@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: jailkit-users@nongnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2013 15:52:12 -0000 --001a11c334aa4bbe5e04e13e60b4 Content-Type: text/plain; charset=ISO-8859-1 The issue is with the way you are using the SSH command. It's trying to ssh in as 'daniel', not as the test user (unless you've set that up in your ssh config). I'm guessing 'daniel' isn't jailed, where the 'test' user is. -Chris On Thu, Jul 11, 2013 at 9:41 AM, Daniel Lo Nigro wrote: > Hello! > > Firstly, thanks for Jailkit. I stumbled on it while searching for how to > create a chroot jail. Wish I had found it earlier, it's a very handy tool! > > I'm using Debian Testing. Here's what I've done for my setup: > > jk_init -v -j /home/jail basicshell editors extendedshell netutils ssh > sftp scp git > jk_jailuser -m -j /home/jail/ -s /bin/bash test > > Connecting via SSH and SFTP are both fine, and the user is jailed as > expected. There is a Git repository at */home/test/git/example* in the > jail. When I try to clone this Git repository, it fails: > > daniel@DanielPC:/tmp$ git clone ssh://example.com/home/test/git/example . > Cloning into '.'... > fatal: '/home/test/git/example' does not appear to be a git repository > fatal: Could not read from remote repository. > > Please make sure you have the correct access rights and the repository > exists. > > However, if I use the full path (/home/jail/...), it works: > daniel@DanielPC:/tmp$ git clone ssh:// > example.com/home/jail/home/test/git/example . > Cloning into '.'... > remote: Counting objects: 6, done. > remote: Compressing objects: 100% (2/2), done. > remote: Total 6 (delta 0), reused 0 (delta 0) > Receiving objects: 100% (6/6), done. > > This leads me to believe that Git isn't being jailed for some reason. Any > ideas on how to fix my configuration so that SSH login shells and SFTP are > jailed, and Git is also jailed? > > Thanks! > > > -- > Regards, > Daniel Lo Nigro > http://dan.cx/ | http://twitter.com/Daniel15 > > _______________________________________________ > Jailkit-users mailing list > Jailkit-users@nongnu.org > https://lists.nongnu.org/mailman/listinfo/jailkit-users > > -- Chris Tankersley http://ctankersley.com --001a11c334aa4bbe5e04e13e60b4 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
The issue is with the way you are using the SSH command. I= t's trying to ssh in as 'daniel', not as the test user (unless = you've set that up in your ssh config). I'm guessing 'daniel= 9; isn't jailed, where the 'test' user is.

-Chris


On Thu, Jul 11, 2013 at 9:41 AM, Daniel Lo Nigro <lists@dan.cx> wrote:
Hello!
=

Firstly, thanks for Jailkit. I stumbled on it while sea= rching for how to create a chroot jail. Wish I had found it earlier, it'= ;s a very handy tool!

I'm using Debian Testing. Here's what I've done = for my setup:

jk_jailuser =A0-m -= j /home/jail/ -s /bin/bash test

Connect= ing via SSH and SFTP are both fine, and the user is jailed as expected. The= re is a Git repository at /home/test/git/example in the jail. When I= try to clone this Git repository, it fails:

<= div> Cloning into '.'...
fatal: '/home/test/git/examp= le' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access ri= ghts and the repository exists.

However, if= I use the full path (/home/jail/...), it works:
daniel@DanielPC:/tmp$ git clone = ssh://example.com/home/jail/home/test/git/example .
<= div> Cloning into '.'...
remote: Counting objects: 6, don= e.
remote: Compressi= ng objects: 100% (2/2), done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (6/6), d= one.

This leads me to believe that Gi= t isn't being jailed for some reason. Any ideas on how to fix my config= uration so that SSH login shells and SFTP are jailed, and Git is also jaile= d?

Thanks!


--
Regards,
= Daniel Lo Nigro
http://dan.= cx/ | http://= twitter.com/Daniel15

_______________________________________________
Jailkit-users mailing list
Jailkit-users@nongnu.org https://lists.nongnu.org/mailman/listinfo/jailkit-users




--
Chris Ta= nkersley
http://cta= nkersley.com
--001a11c334aa4bbe5e04e13e60b4-- From MAILER-DAEMON Thu Jul 11 18:37:45 2013 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1UxPUf-0006kN-06 for mharc-jailkit-users@gnu.org; Thu, 11 Jul 2013 18:37:45 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxPUZ-0006jq-6d for jailkit-users@nongnu.org; Thu, 11 Jul 2013 18:37:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxPUU-0004aM-TY for jailkit-users@nongnu.org; Thu, 11 Jul 2013 18:37:39 -0400 Received: from mail-wi0-x236.google.com ([2a00:1450:400c:c05::236]:47107) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxPUU-0004a8-IA for jailkit-users@nongnu.org; Thu, 11 Jul 2013 18:37:34 -0400 Received: by mail-wi0-f182.google.com with SMTP id m6so45443wiv.3 for ; Thu, 11 Jul 2013 15:37:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=d15.biz; s=gmail; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=lwoWSd6tKlm2gcg440aNPcf+SeJtZkfPPVhUSq+kBw4=; b=GCJ9/J6XoZwBkodaHvplWB3W2w/pIvV1U6udIcuuU/OLB/wVHAQIThu0y/eF9qBgic byZZekSzfM4DTHmxIGUPPOtNVfvLCxuYjePAKbqcgeDqhb/qDK0tIYAuj8vUcieXyW2G 77NcgZIaTqg27rrfkou/ocQDiymsQvu6XFxqE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :x-gm-message-state; bh=lwoWSd6tKlm2gcg440aNPcf+SeJtZkfPPVhUSq+kBw4=; b=Z6k3Kzrv/Jk3b1M+fsI2FJcYe7k7EnBP0Eh4oOX74a6mqnfkiQwvWXYpJiIkVIPjtW 2+9ems75QvmtlcdXLUyY7Zk/hs1jg8KCbcadFC1xB1w9Q2AOGCfX6PzIphWXSRAHAcYe cCE3RFswv7BibbG3jQUsSwLIsNCvZoNjbsDixoEnNeOKqeOfgrz8tjB8Mn7ElquHI+Ju 4cJwq31xTeu3IWkazKiQf5qpcn8WOr8fXTiPgyTmsL8Nsmzlo5191YHUvBLcLHO2t5QT dbqBYHmoUPtHlBepV36SESQVPPJYMK39z9xdTLB3/wtOXtgxKqLDm94tsClO8Vui89cI Z/bA== MIME-Version: 1.0 X-Received: by 10.194.58.11 with SMTP id m11mr22586600wjq.45.1373582253292; Thu, 11 Jul 2013 15:37:33 -0700 (PDT) Sender: daniel@d15.biz Received: by 10.216.239.130 with HTTP; Thu, 11 Jul 2013 15:37:33 -0700 (PDT) In-Reply-To: References: Date: Fri, 12 Jul 2013 08:37:33 +1000 X-Google-Sender-Auth: JIbg6QxD0TUTKQ7ffYbozEUwwq0 Message-ID: From: Daniel Lo Nigro To: jailkit-users@nongnu.org Content-Type: multipart/alternative; boundary=047d7bacb8ea47105d04e1440a8c X-Gm-Message-State: ALoCoQnV3l82x4lb0IotLXs1YKb+frajWNu7ps79QHRLpkKHPaO6NQq6v2wOQVLMtMgZOrhaDO9Z X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::236 Subject: Re: [Jailkit-users] `git clone` allowing access to files outside chroot X-BeenThere: jailkit-users@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: jailkit-users@nongnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2013 22:37:43 -0000 --047d7bacb8ea47105d04e1440a8c Content-Type: text/plain; charset=ISO-8859-1 Thanks Chris, that's such an obvious oversight on my behalf! I'll try it out again tonight with the correct Git path (including the username) and see if it works as expected. On Fri, Jul 12, 2013 at 1:52 AM, Chris Tankersley wrote: > The issue is with the way you are using the SSH command. It's trying to > ssh in as 'daniel', not as the test user (unless you've set that up in your > ssh config). I'm guessing 'daniel' isn't jailed, where the 'test' user is. > > -Chris > > > On Thu, Jul 11, 2013 at 9:41 AM, Daniel Lo Nigro wrote: > >> Hello! >> >> Firstly, thanks for Jailkit. I stumbled on it while searching for how to >> create a chroot jail. Wish I had found it earlier, it's a very handy tool! >> >> I'm using Debian Testing. Here's what I've done for my setup: >> >> jk_init -v -j /home/jail basicshell editors extendedshell netutils ssh >> sftp scp git >> jk_jailuser -m -j /home/jail/ -s /bin/bash test >> >> Connecting via SSH and SFTP are both fine, and the user is jailed as >> expected. There is a Git repository at */home/test/git/example* in the >> jail. When I try to clone this Git repository, it fails: >> >> daniel@DanielPC:/tmp$ git clone ssh://example.com/home/test/git/example . >> Cloning into '.'... >> fatal: '/home/test/git/example' does not appear to be a git repository >> fatal: Could not read from remote repository. >> >> Please make sure you have the correct access rights and the repository >> exists. >> >> However, if I use the full path (/home/jail/...), it works: >> daniel@DanielPC:/tmp$ git clone ssh:// >> example.com/home/jail/home/test/git/example . >> Cloning into '.'... >> remote: Counting objects: 6, done. >> remote: Compressing objects: 100% (2/2), done. >> remote: Total 6 (delta 0), reused 0 (delta 0) >> Receiving objects: 100% (6/6), done. >> >> This leads me to believe that Git isn't being jailed for some reason. Any >> ideas on how to fix my configuration so that SSH login shells and SFTP are >> jailed, and Git is also jailed? >> >> Thanks! >> >> >> -- >> Regards, >> Daniel Lo Nigro >> http://dan.cx/ | http://twitter.com/Daniel15 >> >> _______________________________________________ >> Jailkit-users mailing list >> Jailkit-users@nongnu.org >> https://lists.nongnu.org/mailman/listinfo/jailkit-users >> >> > > > -- > Chris Tankersley > http://ctankersley.com > > _______________________________________________ > Jailkit-users mailing list > Jailkit-users@nongnu.org > https://lists.nongnu.org/mailman/listinfo/jailkit-users > > --047d7bacb8ea47105d04e1440a8c Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Thanks Chris, that's such an obvious oversight on my b= ehalf! I'll try it out again tonight with the correct Git path (includi= ng the username) and see if it works as expected.


On Fri, Jul 12, 2013 at 1:52 AM, Chris T= ankersley <chris@ctankersley.com> wrote:
The issue is with the way you are using the SSH command. I= t's trying to ssh in as 'daniel', not as the test user (unless = you've set that up in your ssh config). I'm guessing 'daniel= 9; isn't jailed, where the 'test' user is.

-Chris


On Thu, Jul 11, 2013 at 9:41 AM, Danie= l Lo Nigro <lists@dan.cx> wrote:
Hello!

Firstly, thanks for= Jailkit. I stumbled on it while searching for how to create a chroot jail.= Wish I had found it earlier, it's a very handy tool!

I'm using Debian Testing. Here's what I've done = for my setup:

jk_jailuser =A0-m -= j /home/jail/ -s /bin/bash test

Connect= ing via SSH and SFTP are both fine, and the user is jailed as expected. The= re is a Git repository at /home/test/git/example in the jail. When I= try to clone this Git repository, it fails:

daniel@Danie= lPC:/tmp$ git clone ssh://example.com/home/test/git/example .
<= div> Cloning into '.'...
fatal: '/home/test/git/examp= le' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access ri= ghts and the repository exists.

However, if= I use the full path (/home/jail/...), it works:
daniel@DanielPC:/tmp$ git clone = ssh://example.com/home/jail/home/test/git/example .
<= div> Cloning into '.'...
remote: Counting objects: 6, don= e.
remote: Compressi= ng objects: 100% (2/2), done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (6/6), d= one.

This leads me to believe that Gi= t isn't being jailed for some reason. Any ideas on how to fix my config= uration so that SSH login shells and SFTP are jailed, and Git is also jaile= d?

Thanks!


--
Regards,
= Daniel Lo Nigro
http://dan.= cx/ | http://= twitter.com/Daniel15

_______________________________________________
Jailkit-users mailing list
Jailkit-users= @nongnu.org
https://lists.nongnu.org/mailman/listinfo/jailkit-users


<= br clear=3D"all">

--
Chris Tankersley
http://ctankersley.com
<= /span>

_______________________________________________
Jailkit-users mailing list
Jailkit-users@nongnu.org https://lists.nongnu.org/mailman/listinfo/jailkit-users


--047d7bacb8ea47105d04e1440a8c--