diff --git a/test/Makefile b/test/Makefile index 885782fd..fee03f0d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -81,8 +81,7 @@ $(INITRAMFS)/lib64: $(INITRAMFS)/etc: @mkdir -p $@ - @cp $(CUR_DIR)/etc/passwd $@ - @cp $(CUR_DIR)/etc/group $@ + @cp $(CUR_DIR)/etc/* $@ # Install busybox into /bin and /usr/bin. $(INITRAMFS)/bin: diff --git a/test/etc/nginx.conf b/test/etc/nginx.conf new file mode 100644 index 00000000..0398e0c1 --- /dev/null +++ b/test/etc/nginx.conf @@ -0,0 +1,16 @@ +user root; + +events { +} + +http { + include mime.types; + + server { + listen 10.0.2.15:8080; + + location / { + autoindex on; + } + } +} \ No newline at end of file diff --git a/test/etc/redis.conf b/test/etc/redis.conf new file mode 100644 index 00000000..0bc2b061 --- /dev/null +++ b/test/etc/redis.conf @@ -0,0 +1,3 @@ +bind 10.0.2.15 +protected-mode no +port 6379