/usr/bin/rpcli is in routeplanner 0.19+nmu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #! /usr/bin/python
# -*- python -*-
import sys
sys.path.append('/usr/share/routeplanner')
import rpcli
if len(sys.argv) > 1:
rpcli.mainloop(sys.argv[1])
else:
rpcli.mainloop()
|