mirror of
https://github.com/ietf-wg-dnsop/wg-materials
synced 2025-08-22 02:09:16 +00:00
Updated Templates and added simple mkmtg script
This commit is contained in:
parent
71a0624c1b
commit
4c72b4b43b
@ -4,9 +4,9 @@
|
||||
|
||||
|
||||
### Chairs
|
||||
* Tim Wicinski [tjw.ietf@gmail.com](tjw.ietf@gmail.com)
|
||||
* Suzanne Woolf [suzworldwide@gmail.com](suzworldwide@gmail.com)
|
||||
* Benno Overeinder [benno@nlnetlabs.nl](benno@nlnetlabs.nl)
|
||||
* Suzanne Woolf [suzworldwide@gmail.com](suzworldwide@gmail.com)
|
||||
* Tim Wicinski [tjw.ietf@gmail.com](tjw.ietf@gmail.com)
|
||||
|
||||
### IESG Overlord
|
||||
* Warren Kumari [warren@kumari.net](warren@kumari.net)
|
||||
@ -19,10 +19,10 @@
|
||||
|
||||
* Date: 26 July 2021
|
||||
* Time: 1900-2100 PDT (2300-0100 UTC)
|
||||
* Room: [http://www.meetecho.com/ietf111/recordings#DNSOP](http://www.meetecho.com/ietf111/recordings#DNSOP)
|
||||
* MeetEcho: [http://www.meetecho.com/ietf111/recordings#DNSOP](http://www.meetecho.com/ietf111/recordings#DNSOP)
|
||||
|
||||
* Jabber: [dnsop@jabber.ietf.org](dnsop@jabber.ietf.org)
|
||||
* EtherPad: [https://codimd.ietf.org/notes-ietf-111-dnsop](https://codimd.ietf.org/notes-ietf-111-dnsop)
|
||||
* Minutes: [https://codimd.ietf.org/notes-ietf-111-dnsop](https://codimd.ietf.org/notes-ietf-111-dnsop)
|
||||
|
||||
|
||||
#
|
||||
|
@ -1,12 +1,12 @@
|
||||
|
||||
# DNS Operations (DNSOP) Working Group
|
||||
## IETF
|
||||
## IETF %%MTG%%
|
||||
|
||||
|
||||
### Chairs
|
||||
* Tim Wicinski [tjw.ietf@gmail.com](tjw.ietf@gmail.com)
|
||||
* Suzanne Woolf [suzworldwide@gmail.com](suzworldwide@gmail.com)
|
||||
* Benno Overeinder [benno@nlnetlabs.nl](benno@nlnetlabs.nl)
|
||||
* Suzanne Woolf [suzworldwide@gmail.com](suzworldwide@gmail.com)
|
||||
* Tim Wicinski [tjw.ietf@gmail.com](tjw.ietf@gmail.com)
|
||||
|
||||
### IESG Overlord
|
||||
* Warren Kumari [warren@kumari.net](warren@kumari.net)
|
||||
@ -19,10 +19,10 @@
|
||||
|
||||
* Date:
|
||||
* Time:
|
||||
* Room: []()
|
||||
* MeetEcho: [https://meetings.conf.meetecho.com/ietf%%MTG%%/?group=dnsop&short=&item=1](https://meetings.conf.meetecho.com/ietf%%MTG%%/?group=dnsop&short=&item=1)
|
||||
* Minutes: [https://codimd.ietf.org/notes-ietf-%%MTG%%-dnsop](https://codimd.ietf.org/notes-ietf-%%MTG%%-dnsop)
|
||||
|
||||
* Jabber: [dnsop@jabber.ietf.org](dnsop@jabber.ietf.org)
|
||||
* EtherPad: []()
|
||||
|
||||
|
||||
#
|
29
mkmtg.sh
Executable file
29
mkmtg.sh
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
# simple script to do the doc preperation for an upcoming ietf meeting
|
||||
# this fails for interims
|
||||
|
||||
WG=dnsop
|
||||
ECHO=
|
||||
|
||||
if test $# -ne 1; then
|
||||
echo "usage: <num>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mtg=$1
|
||||
|
||||
IETF="${WG}-ietf$1"
|
||||
|
||||
if test -d "${IETF}"; then
|
||||
echo "${IETF} already exists"
|
||||
exit 1
|
||||
fi
|
||||
echo "Creating ${IETF}..."
|
||||
|
||||
${ECHO} mkdir -p "${IETF}"
|
||||
|
||||
${ECHO} cp ${WG}-templates/${WG}-agenda-requests-template.md "${IETF}"/"${IETF}"-agenda-requests.md
|
||||
|
||||
${ECHO} sed -e "s/%%MTG%%/${mtg}/g" ${WG}-templates/${WG}-agenda-template.md > "${IETF}"/"${IETF}"-agenda.md
|
||||
|
||||
${ECHO} ln -s "${IETF}"-agenda-requests.md "${IETF}"/README.md
|
Loading…
x
Reference in New Issue
Block a user