123456789101112131415161718192021222324 |
- #!/bin/sh -
- set -ex
- sed -i '/mount -t proc /d; /mount -t sysfs /d' /debootstrap/functions
- /debootstrap/debootstrap --second-stage
- ln -sf /bin/bash /bin/sh
- apt-get update
- apt-get install -y \
- libglib2.0-0 \
- libxrandr2 \
- python-xvfbwrapper \
- ratpoison \
- sudo
- /cryptech-builder/ratinox ise-install
- rm -rf /Xilinx_ISE_DS_Lin_14.7_1015_1
- adduser --disabled-password --gecos 'Cryptech Build Bot' --shell /bin/sh builder
- echo >/etc/sudoers.d/builder 'builder ALL = (ALL) NOPASSWD: SETENV: ALL'
|