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 05:28:04 +00:00
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
723f4078a3
tahoe-lafs
/
bin
/
allmydata-tahoe
5 lines
73 B
Plaintext
Raw
Normal View
History
Unescape
Escape
change #!/usr/bin/python to #!/usr/bin/env python Note that using "whatever version of python the name 'python' maps to in the current shell environment" is more error-prone that specifying which python you mean, such as by executing "/usr/bin/python setup.py" instead of executing "./setup.py". When you build tahoe (by running "make") it will make a copy of bin/allmydata-tahoe in instdir/bin/allmydata-tahoe with the shebang line rewritten to execute the specific version of python that was used when building instead of to execute "/usr/bin/env python". However, it seems better that the default for lazy people be "whatever 'python' means currently" instead of "whatever 'python' meant to the manufacturer of your operating system".
2007-03-29 21:01:28 +00:00
#!/usr/bin/env python
add bin/allmydata to create/stop/start nodes
2006-12-05 19:25:23 +00:00
from allmydata.scripts import runner
runner.run()
Reference in New Issue
Copy Permalink