Update board.net maintenance authored by Rein Martin's avatar Rein Martin
......@@ -10,17 +10,35 @@ As a sysadmin we have some tools:
We can delete a board by API call
```
https://board.net/api/1/deletePad?apikey=secret12345&padID=Myseminar-B3S
```
or preferred is directly on heu2 so that key is not exposed:
```
curl "https://board.net/api/1/deletePad?apikey=secret029b3f1&padID=Myseminar-B3S"
```
Since heu2 does not resolve his own dns use:
```
curl "https://127.0.0.1/api/1/deletePad?apikey=secret029b3f1&padID=Myseminar-B3S"
```
or
```
curl "https://localhost/api/1/deletePad?apikey=secret029b3f1&padID=Myseminar-B3S"
```
Admins: see https://etherpad.org/doc/latest/#index_http_api get how to secret logged in the server from `cat /opt/etherpad-lite/APIKEY.txt` or from keepass.
If we only know the read only link, we need to get the PadID first:
```
"https://board.net/api/1.2.14/getPadID?apikey=apikey...&roID=r.dcaf13c86f0df1fbb3627394515087c3"
```
## delete script
......@@ -39,4 +57,4 @@ This is too slow (**so don't use - can cause etherpad to crash! use api calls in
## donation
If you requested a board for deletion, we welcome your donation to cover expenses to run the board.net service and for personal support: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5TQ33F5GUFLLE
\ No newline at end of file
If you requested a board for deletion, we welcome your donation to cover expenses to run the board.net service and for personal support: https://www.paypal.com/cgi-bin/webscr?cmd=\_s-xclick&hosted_button_id=5TQ33F5GUFLLE
\ No newline at end of file