Command to remove xmpp users

This commit is contained in:
Bob Mottram 2015-04-05 13:43:33 +01:00
parent 8ea84e3df0
commit d9250066fd
4 changed files with 71 additions and 0 deletions

View File

@ -25,6 +25,7 @@ install:
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
install -m 755 src/${APP}-rmxmpp ${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
@ -41,6 +42,7 @@ install:
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
install -m 644 man/${APP}-rmxmpp.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
@ -57,6 +59,7 @@ uninstall:
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 -f ${PREFIX}/share/man/man1/${APP}-rmxmpp.1.gz
rm -rf ${PREFIX}/share/${APP}
rm -f ${PREFIX}/bin/${APP}
rm -f ${PREFIX}/bin/${APP}-prep
@ -72,6 +75,7 @@ uninstall:
rm -f ${PREFIX}/bin/${APP}-ignore
rm -f ${PREFIX}/bin/${APP}-unignore
rm -f ${PREFIX}/bin/${APP}-addxmpp
rm -f ${PREFIX}/bin/${APP}-rmxmpp
clean:
rm -f \#* \.#* debian/*.substvars debian/*.log
rm -fr deb.* debian/${APP}

View File

@ -13,3 +13,4 @@ man/freedombone-rmemail.1.gz
man/freedombone-ignore.1.gz
man/freedombone-unignore.1.gz
man/freedombone-addxmpp.1.gz
man/freedombone-rmxmpp.1.gz

BIN
man/freedombone-rmxmpp.1.gz Normal file

Binary file not shown.

66
src/freedombone-rmxmpp Executable file
View File

@ -0,0 +1,66 @@
#!/bin/bash
#
# .---. . .
# | | |
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
#
# Freedom in the Cloud
#
# Removes an xmpp user
# License
# =======
#
# Copyright (C) 2015 Bob Mottram <bob@robotics.uk.to>
#
# 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 <http://www.gnu.org/licenses/>.
EMAIL_ADDRESS=
function show_help {
echo ''
echo 'freedombone-rmxmpp -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 deluser $EMAIL_ADDRESS
exit 0