From 8ea84e3df0b711c2e74248d6481ab13a59c2de81 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 5 Apr 2015 13:38:01 +0100 Subject: [PATCH] Command for adding xmpp users --- Makefile | 4 ++ debian/source/include-binaries | 1 + doc/EN/usage.org | 2 +- man/freedombone-addxmpp.1.gz | Bin 0 -> 427 bytes src/freedombone-addxmpp | 66 +++++++++++++++++++++++++++++++++ website/EN/usage.html | 4 +- 6 files changed, 74 insertions(+), 3 deletions(-) create mode 100644 man/freedombone-addxmpp.1.gz create mode 100755 src/freedombone-addxmpp diff --git a/Makefile b/Makefile index 0ea6d413..9caadb9d 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ install: install -m 755 src/${APP}-rmemail ${DESTDIR}${PREFIX}/bin install -m 755 src/${APP}-ignore ${DESTDIR}${PREFIX}/bin install -m 755 src/${APP}-unignore ${DESTDIR}${PREFIX}/bin + install -m 755 src/${APP}-addxmpp ${DESTDIR}${PREFIX}/bin mkdir -m 755 -p ${DESTDIR}${PREFIX}/share/man/man1 install -m 644 man/${APP}.1.gz ${DESTDIR}${PREFIX}/share/man/man1 install -m 644 man/${APP}-prep.1.gz ${DESTDIR}${PREFIX}/share/man/man1 @@ -39,6 +40,7 @@ install: install -m 644 man/${APP}-rmemail.1.gz ${DESTDIR}${PREFIX}/share/man/man1 install -m 644 man/${APP}-ignore.1.gz ${DESTDIR}${PREFIX}/share/man/man1 install -m 644 man/${APP}-unignore.1.gz ${DESTDIR}${PREFIX}/share/man/man1 + install -m 644 man/${APP}-addxmpp.1.gz ${DESTDIR}${PREFIX}/share/man/man1 uninstall: rm -f ${PREFIX}/share/man/man1/${APP}.1.gz rm -f ${PREFIX}/share/man/man1/${APP}-prep.1.gz @@ -54,6 +56,7 @@ uninstall: rm -f ${PREFIX}/share/man/man1/${APP}-rmemail.1.gz rm -f ${PREFIX}/share/man/man1/${APP}-ignore.1.gz rm -f ${PREFIX}/share/man/man1/${APP}-unignore.1.gz + rm -f ${PREFIX}/share/man/man1/${APP}-addxmpp.1.gz rm -rf ${PREFIX}/share/${APP} rm -f ${PREFIX}/bin/${APP} rm -f ${PREFIX}/bin/${APP}-prep @@ -68,6 +71,7 @@ uninstall: rm -f ${PREFIX}/bin/${APP}-rmlist rm -f ${PREFIX}/bin/${APP}-ignore rm -f ${PREFIX}/bin/${APP}-unignore + rm -f ${PREFIX}/bin/${APP}-addxmpp clean: rm -f \#* \.#* debian/*.substvars debian/*.log rm -fr deb.* debian/${APP} diff --git a/debian/source/include-binaries b/debian/source/include-binaries index e3dd9c93..23981818 100644 --- a/debian/source/include-binaries +++ b/debian/source/include-binaries @@ -12,3 +12,4 @@ man/freedombone-rmlist.1.gz man/freedombone-rmemail.1.gz man/freedombone-ignore.1.gz man/freedombone-unignore.1.gz +man/freedombone-addxmpp.1.gz diff --git a/doc/EN/usage.org b/doc/EN/usage.org index d92922d9..416c944a 100644 --- a/doc/EN/usage.org +++ b/doc/EN/usage.org @@ -410,7 +410,7 @@ To add a user: #+BEGIN_SRC bash ssh username@domainname -p 2222 su -prosodyctl adduser newusername@newdomainname +freedombone-addxmpp -e newusername@newdomainname exit exit #+END_SRC diff --git a/man/freedombone-addxmpp.1.gz b/man/freedombone-addxmpp.1.gz new file mode 100644 index 0000000000000000000000000000000000000000..ebcd8c10e24f576d56ee78f47149048386ac4f1e GIT binary patch literal 427 zcmV;c0aX4UiwFP^EFo0@1BFssZ__Xoe$THs%F93^$yzjNRA^cFHE4dR+&W4J*kbN=&P(=#hNHjOo$*8aPcM-W0nh z13#NRfAM#s3bmcWPy3iEbj*wiRmV_Fz)~DpGlE$oq#mbH8r2BY$fX_kY83b_m<+G^ zbau@rqZ_P7STBA@9QGL>%GGY~dx@lwNozIX@R~|`ttFL~RVM83Lo2VmkZLbq=Fu`= zE+CCxUCz^&mnSq~mb<@28eBk<1@r2zZ+Y_dwm#}ryOAHu+NhiRcgRYq4`_ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +EMAIL_ADDRESS= + +function show_help { + echo '' + echo 'freedombone-addxmpp -e [email address]' + echo '' + exit 0 +} + +while [[ $# > 1 ]] +do +key="$1" + +case $key in + -h|--help) + show_help + ;; + -e|--email) + shift + EMAIL_ADDRESS="$1" + ;; + *) + # unknown option + ;; +esac +shift +done + +if [ ! $EMAIL_ADDRESS ]; then + show_help +fi + +prosodyctl adduser $EMAIL_ADDRESS + +exit 0 diff --git a/website/EN/usage.html b/website/EN/usage.html index 0d7e8a75..a6be2a87 100644 --- a/website/EN/usage.html +++ b/website/EN/usage.html @@ -4,7 +4,7 @@ - + @@ -1165,7 +1165,7 @@ To add a user:
ssh username@domainname -p 2222
 su
-prosodyctl adduser newusername@newdomainname
+freedombone-addxmpp -e newusername@newdomainname
 exit
 exit