Mercurial > sat_docs
view docker/base/scripts/prosodyctl @ 139:d36a68e396d5
flatpak: set appdata release version for dev version:
appdata file can now use a template (which has the same name with "_tpl_" prefix), which
is used in dev version to automatically set the release with the right Mercurial
revision/date.
Comment from org.salutatoi.Cagou.appdata.xml has been moved as first child of
<component>, so it is not lost while parsing the file.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 23 Jun 2019 17:34:10 +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))