This website requires JavaScript.
Explore
Help
Sign In
ExternalVendorCode
/
tahoe-lafs
Watch
1
Star
0
Fork
0
You've already forked tahoe-lafs
mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced
2024-12-20 13:33:09 +00:00
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
78c53b81ec
tahoe-lafs
/
windows
/
confwiz.py
6 lines
97 B
Python
Raw
Normal View
History
Unescape
Escape
confwiz: add command line options adds command line option parsing to the confwiz. the previous --uninstall option behaves as before, but it parsed more explicitly with the twisted usage library. added is a --server option, which controls which web site the backend script for configuration is to be found on. (it is looked for at /native_client.php on the given server) this option can be used on conjunction with --uninstall to control where the uninstall is recorded Options: -u, --uninstall record uninstall -s, --server= url of server to contact [default: https://beta.allmydata.com/] e.g. confwiz.py -s https://www-test.allmydata.com/
2008-02-15 02:44:29 +00:00
import
sys
from
allmydata
.
gui
.
confwiz
import
main
added a small script as a stub for a config wizard this doesn't implement any config wizard ui, but does a simple http fetch of root_cap and introducer.furl from a php backend stub.
2008-01-11 03:37:18 +00:00
if
__name__
==
'
__main__
'
:
confwiz: add command line options adds command line option parsing to the confwiz. the previous --uninstall option behaves as before, but it parsed more explicitly with the twisted usage library. added is a --server option, which controls which web site the backend script for configuration is to be found on. (it is looked for at /native_client.php on the given server) this option can be used on conjunction with --uninstall to control where the uninstall is recorded Options: -u, --uninstall record uninstall -s, --server= url of server to contact [default: https://beta.allmydata.com/] e.g. confwiz.py -s https://www-test.allmydata.com/
2008-02-15 02:44:29 +00:00
main
(
sys
.
argv
)
Reference in New Issue
Copy Permalink