github.com/schwarzm/garden-linux@v0.0.0-20150507151835-33bca2147c47/packer/rootfs/fuse/provision.sh (about) 1 #!/bin/bash 2 3 set -e -x 4 apt-get update && apt-get -y install \ 5 fuse \ 6 libfuse-dev \ 7 pkg-config 8 9 cd /usr/share/doc/libfuse-dev/examples && \ 10 bash -c "gcc -Wall hello.c $(pkg-config fuse --cflags --libs) -o /usr/bin/hellofs"