mirror of https://github.com/dirtbags/tanks.git
Fix some permissions
This commit is contained in:
parent
e7324c30f5
commit
0b701722fe
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ install: $(BINARIES) $(HTML)
|
||||||
install summary.awk $(DESTDIR)/bin
|
install summary.awk $(DESTDIR)/bin
|
||||||
install forftanks $(DESTDIR)/bin
|
install forftanks $(DESTDIR)/bin
|
||||||
|
|
||||||
install -d $(DESTDIR)/www
|
install -d -o $(id -u www) -g $(id -g www) $(DESTDIR)/www
|
||||||
install upload.cgi $(DESTDIR)/www
|
install upload.cgi $(DESTDIR)/www
|
||||||
install -m 0644 $(HTML) $(DESTDIR)/www
|
install -m 0644 $(HTML) $(DESTDIR)/www
|
||||||
install -m 0644 $(WWW) $(DESTDIR)/www
|
install -m 0644 $(WWW) $(DESTDIR)/www
|
||||||
|
|
|
@ -12,8 +12,8 @@ Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
* [Homepage](https://dirtbags.github.io/tanks/)
|
* [Homepage](https://dirtbags.github.io/tanks/)
|
||||||
* [History](doc/history.md)
|
* [History](docs/history.md)
|
||||||
* [Running](doc/running.md)
|
* [Running](docs/running.md)
|
||||||
|
|
||||||
|
|
||||||
Author
|
Author
|
||||||
|
|
|
@ -38,18 +38,18 @@ game. This is what tanks.js uses to render a game graphically.
|
||||||
The object printed contains:
|
The object printed contains:
|
||||||
|
|
||||||
[[game-width, game-height],
|
[[game-width, game-height],
|
||||||
[[tank1-color,
|
[[tank1-color,
|
||||||
[[sensor1range, sensor1angle, sensor1width, sensor1turret],
|
[[sensor1range, sensor1angle, sensor1width, sensor1turret],
|
||||||
...]],
|
...]],
|
||||||
...],
|
...],
|
||||||
[[
|
[[
|
||||||
[tank1x, tank1y, tank1angle, tank1sensangle,
|
[tank1x, tank1y, tank1angle, tank1sensangle,
|
||||||
tank1flags, tank1sensors],
|
tank1flags, tank1sensors],
|
||||||
...],
|
...],
|
||||||
...]]
|
...]]
|
||||||
|
|
||||||
If file descriptor 3 is open for writes, it also outputs the results of
|
If file descriptor 3 is open for writes, it also outputs the results of
|
||||||
the round to fd3.
|
the round to fd3.
|
||||||
|
|
||||||
|
|
||||||
### rank.awk
|
### rank.awk
|
||||||
|
@ -70,4 +70,20 @@ Accepts form input and writes a tank.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Problems
|
||||||
|
========
|
||||||
|
|
||||||
|
Nothing uploads
|
||||||
|
---------------
|
||||||
|
|
||||||
|
The user running the web server has to be able to write to the directory serving the CGI.
|
||||||
|
Yes, I realize this is a terrible design. Please feel encouraged to submit a merge request.
|
||||||
|
|
||||||
|
|
||||||
|
Only sensors upload
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
The user running the web server has to be able to write to the directory serving the CGI.
|
||||||
|
Not just the directory with the tank token.
|
||||||
|
Yes, I realize this is a terrible design. Please feel encouraged to submit a merge request.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue