view docker/base/scripts/prosodyctl @ 153:df75b62e653e

flatpak (build_manifest): some fixes needed after runtime update: - removed `--optimize=1` for lxml, as it is making the build fail - added build flag on x86_64 for Pillow (will need to be adapted if we build on other architectures) - added a module for Python 2.7.16, Python 2 not being included anymore in the runtime - DEFAULT_MANIFEST modules are put at the beginning of modules
author Goffi <goffi@goffi.org>
date Fri, 28 Jun 2019 15:19:47 +0200
parents b69056368901
children
line wrap: on
line source

#!/usr/bin/env python2
# This script simulate prosodyctl adduser/passwd/deluser and call it on the prosody container
import sys, xmlrpclib

proxy = xmlrpclib.ServerProxy("http://prosody:9999/")
def pwd():
    pwd1=raw_input(); pwd2=raw_input(); assert pwd1==pwd2
    return pwd1

password = pwd() if sys.argv[1] in ["adduser", "passwd"] else ""
sys.exit(proxy.prosodyctl(sys.argv[1], sys.argv[2], password))