pimterry / rpi-pxe-server

A ready-to-go PXE + TFTP network boot server for Raspberry Pi, with Resin deployment
Apache License 2.0
77 stars 22 forks source link

Unable to locate package wimtools #1

Closed wblondel closed 7 years ago

wblondel commented 7 years ago

Hi !

Thank you for sharing your work.

I have a problem pushing the repo to resin. It doesn't find the package wimtools.

Here is the full log for you to look : PXEServer-0016ee40f39f4e3532479bc80648098fdb39c3b6.txt

Is there something that I should change?

Thanks

wblondel commented 7 years ago

Ok, I got it working by modifying the Dockerfile.template

I changed :

# We need wimtools from debian unstable, but everything else (above) should be stable only
RUN echo "deb http://deb.debian.org/debian sid main" > /etc/apt/sources.list.d/debian-unstable \
 && apt-get update && apt-get install -y wimtools \
 && rm -rf /var/lib/apt/lists/* \
 && rm /etc/apt/sources.list.d/debian-unstable

by

# We need wimtools from debian unstable, but everything else (above) should be stable only
RUN echo "deb http://deb.debian.org/debian sid main" > /etc/apt/sources.list.d/debian-unstable.list \
 && echo 'APT::Default-Release "testing";' > /etc/apt/apt.conf.d/default \
 && apt-get update && apt-get install -y -t unstable wimtools \
 && rm -rf /var/lib/apt/lists/* \
 && rm /etc/apt/sources.list.d/debian-unstable.list