Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-04 Thread Zenny
On 4/5/15, Zenny wrote: > On 4/5/15, Zenny wrote: >> Thanks Brandon. >> >> Yes, I did notice a typo. Missed a 'D' in NANO_WORLDDIR: >> pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} > > The above asked to do a 'pkg update', so accordingly, I added to > custom_packages the following: > > cust_N

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-04 Thread Zenny
On 4/5/15, Zenny wrote: > Thanks Brandon. > > Yes, I did notice a typo. Missed a 'D' in NANO_WORLDDIR: > pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} The above asked to do a 'pkg update', so accordingly, I added to custom_packages the following: cust_NANOBSD_packages() { env SSL_NO_

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-04 Thread Zenny
Thanks Brandon. Yes, I did notice a typo. Missed a 'D' in NANO_WORLDDIR: pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} /z On 4/5/15, Brandon Allbery wrote: > On Sat, Apr 4, 2015 at 8:26 PM, Zenny wrote: > >> + cust_NANOBSD_packages >> + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PP

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-04 Thread Brandon Allbery
On Sat, Apr 4, 2015 at 8:26 PM, Zenny wrote: > + cust_NANOBSD_packages > + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c > install -fy nano > pkg: illegal option -- f > pkg: illegal option -- y > pkg: chroot failed! > > When I install with -y flag on the host node, it works f

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-04 Thread Zenny
Hi again, I appended the nanobsd configuration file with: cust_NANOBSD_packages() { env SSL_NO_VERIFY_HOSTNAME="true" \ env SSL_NO_VERIFY_PPER="true" \ pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} env SSL_NO_VERIFY_HOSTNAME="true" \ SSL_NO_VERIFY_PEER=

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-02 Thread Zenny
On 4/2/15, Baptiste Daroussin wrote: > On Wed, Apr 01, 2015 at 12:48:21PM +0200, Zenny wrote: >> Hi, >> >> 1. In order to comply with the pkgng in FreeBSD 10.1, the following >> changes >> were appended to my customized nanobsd.conf: >> >> customize_cmd cust_NANOBSD_setup >> > >> > cust_NANOBSD_pa

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-02 Thread Zenny
On 4/2/15, Baptiste Daroussin wrote: > On Wed, Apr 01, 2015 at 12:48:21PM +0200, Zenny wrote: >> Hi, >> >> 1. In order to comply with the pkgng in FreeBSD 10.1, the following >> changes >> were appended to my customized nanobsd.conf: >> >> customize_cmd cust_NANOBSD_setup >> > >> > cust_NANOBSD_pa

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-02 Thread Baptiste Daroussin
On Wed, Apr 01, 2015 at 12:48:21PM +0200, Zenny wrote: > Hi, > > 1. In order to comply with the pkgng in FreeBSD 10.1, the following changes > were appended to my customized nanobsd.conf: > > customize_cmd cust_NANOBSD_setup > > > > cust_NANOBSD_packages() { > > chroot ${NANO_WORLDDIR} sh -c 'cd

Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-02 Thread Zenny
bump! On 4/1/15, Zenny wrote: > Hi, > > 1. In order to comply with the pkgng in FreeBSD 10.1, the following changes > were appended to my customized nanobsd.conf: > > customize_cmd cust_NANOBSD_setup >> >> cust_NANOBSD_packages() { >> chroot ${NANO_WORLDDIR} sh -c 'cd packages; pkg; pkg install n

pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1

2015-04-01 Thread Zenny
Hi, 1. In order to comply with the pkgng in FreeBSD 10.1, the following changes were appended to my customized nanobsd.conf: customize_cmd cust_NANOBSD_setup > > cust_NANOBSD_packages() { > chroot ${NANO_WORLDDIR} sh -c 'cd packages; pkg; pkg install nano; pkg > clean;' > } > > customize_cmd cust