mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
14 lines
277 B
Bash
14 lines
277 B
Bash
#!/bin/sh
|
|
COMMAND=/usr/local/bin/i2pd
|
|
# To make ports exposeable
|
|
# Note: $DATA_DIR is defined in /etc/profile
|
|
|
|
if [ "$1" = "--help" ]; then
|
|
set -- $COMMAND --help
|
|
else
|
|
ln -s /i2pd_certificates "$DATA_DIR"/certificates
|
|
set -- $COMMAND $DEFAULT_ARGS $@
|
|
fi
|
|
|
|
exec "$@"
|