Legal: correct GPLv3 LICENSE (fixes garbled 'GENERAL GENERAL'), AUTHORS DragonX attribution, COPYING. Packaging: man pages REGENERATED from the 1.0.3 binaries via help2man (dragonxd/dragonx-cli/dragonx-tx.1 -> v1.0.3, correct dates), wired into doc/man/Makefile.am (dist_man1_MANS), orphaned hush*.1 removed. Init/openrc/systemd scripts, Debian packaging (control/changelog/copyright rebranded hush->dragonx + install stubs), example confs taken from origin/compliant-rebrand (c05134e77). REMAINING follow-ups: (1) debian/changelog still tops at 1.0.0 - add a 1.0.3 entry; (2) dragonx-cli --help hardcodes rpcport default 18030 (hush) - fix the HelpMessage string in source then regen. Staged on 176 for review; not pushed.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
68 lines
1.3 KiB
Bash
68 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# dragonxd The hush core server.
|
|
#
|
|
#
|
|
# chkconfig: 345 80 20
|
|
# description: dragonxd
|
|
# processname: dragonxd
|
|
#
|
|
|
|
# Source function library.
|
|
. /etc/init.d/functions
|
|
|
|
# you can override defaults in /etc/sysconfig/dragonxd, see below
|
|
if [ -f /etc/sysconfig/dragonxd ]; then
|
|
. /etc/sysconfig/dragonxd
|
|
fi
|
|
|
|
RETVAL=0
|
|
|
|
prog=dragonxd
|
|
# you can override the lockfile via HUSHD_LOCKFILE in /etc/sysconfig/dragonxd
|
|
lockfile=${HUSHD_LOCKFILE-/var/lock/subsys/dragonxd}
|
|
|
|
# dragonxd defaults to /usr/bin/dragonxd, override with HUSHD_BIN
|
|
dragonxd=${HUSHD_BIN-/usr/bin/dragonxd}
|
|
|
|
# dragonxd opts default to -disablewallet, override with HUSHD_OPTS
|
|
dragonxd_opts=${HUSHD_OPTS--disablewallet}
|
|
|
|
start() {
|
|
echo -n $"Starting $prog: "
|
|
daemon $DAEMONOPTS $dragonxd $dragonxd_opts
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && touch $lockfile
|
|
return $RETVAL
|
|
}
|
|
|
|
stop() {
|
|
echo -n $"Stopping $prog: "
|
|
killproc $prog
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && rm -f $lockfile
|
|
return $RETVAL
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
status)
|
|
status $prog
|
|
;;
|
|
restart)
|
|
stop
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: service $prog {start|stop|status|restart}"
|
|
exit 1
|
|
;;
|
|
esac
|