최근에 이사했어요라즈베리 파이 제시init.d
내 RPi 에서 이제 모든 서비스를 systemd
.
amule-daemon.service
aMule 데몬은 현재 init.d와 함께 작업하고 있지만 다른 서비스의 일부 종속성을 추가하기 위해 스크립트를 파일로 이동하고 싶습니다 autofs
.
내 aMule 실제 init.d 스크립트는 다음과 같습니다:
#! /bin/sh
### BEGIN INIT INFO
# Provides: amule-daemon
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Should-Start: $network
# Should-Stop: $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Daemonized version of aMule.
# Description: Starts the aMule daemon with the user specified in
# /etc/default/amule-daemon.
### END INIT INFO
PATH=/sbin:/usr/sbin:/bin:/usr/bin
PROGNAME=amuled
DESC="aMule daemon"
PKGNAME="amule-daemon"
DAEMON=/usr/bin/amuled
WEB=/usr/bin/amuleweb
WEB_OPTS="--quiet --config-file=/etc/.aMule/remote.conf"
SCRIPTNAME=/etc/init.d/$PKGNAME
WRAPPER=/usr/share/amule/amuled_home_wrapper.sh
[ -x "$DAEMON" ] || exit 0
[ -r /etc/default/$PKGNAME ] && . /etc/default/$PKGNAME
. /lib/init/vars.sh # has VERBOSE
. /lib/lsb/init-functions
if [ -z "$AMULED_USER" ]; then
log_warning_msg \
"Not starting $DESC, AMULED_USER not set in /etc/default/$PKGNAME."
exit 0
fi
do_start()
{
# Return
# 0 if daemon has been started
# 1 if daemon was already running
# 2 if daemon could not be started
start-stop-daemon --start --quiet --exec $DAEMON --user "$AMULED_USER" --chuid "$AMULED_USER" --test >/dev/null || return 1
start-stop-daemon --start --quiet --exec $WRAPPER --user "$AMULED_USER" --chuid "$AMULED_USER" >/dev/null || return 2
start-stop-daemon --start --quiet --exec $WEB --user "$AMULED_USER" --chuid "$AMULED_USER" -- $WEB_OPTS & >/dev/null
}
do_stop()
{
# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# 2 if daemon could not be stopped
start-stop-daemon --stop --quiet --retry="TERM/30/KILL/5" --exec $DAEMON --user "$AMULED_USER" --chuid "$AMULED_USER"
start-stop-daemon --stop --quiet --retry="TERM/30/KILL/5" --exec $WEB --user "$AMULED_USER" --chuid "$AMULED_USER"
return "$?"
}
case "$1" in
start)
[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$PROGNAME"
do_start
case "$?" in
0) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
1) [ "$VERBOSE" != no ] && \
log_progress_msg "(already running)" && log_end_msg 0 ;;
2) [ "$VERBOSE" != no ] && log_end_msg 1; exit 1 ;;
esac
;;
stop)
[ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$PROGNAME"
do_stop
case "$?" in
0 | 1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
2) [ "$VERBOSE" != no ] && log_end_msg 1; exit 1 ;;
esac
;;
restart|force-reload)
log_daemon_msg "Restarting $DESC" "$PROGNAME"
do_stop
case "$?" in
0 | 1)
do_start
case "$?" in
0) log_end_msg 0 ;;
1) log_end_msg 1; exit 1 ;; # Old process is still running
*) log_end_msg 1; exit 1 ;; # Failed to start
esac
;;
*)
# Failed to stop
log_end_msg 1
exit 1
;;
esac
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
exit 3
;;
esac
exit 0
보시다시피, 몇 가지 옵션을 사용하여 aMule 데몬을 시작하도록 구성되어 있습니다:
- 특정 사용자로 실행
amuled
- 웹 인터페이스 실행
amuleweb
- 웹 인터페이스 옵션 로드
remote.conf
- 설정된 홈 디렉토리 구성 사용
amuled_home_wrapper.sh
완벽하게 작동합니다.
이러한 옵션을 모두 .service 파일로 옮기려면 어떻게 해야 합니까?
답변1
내 최종 작업 솔루션은init.d 스크립트를 실행하는 시스템 단위 파일 작성, 전체 스크립트를 변환하지 않고.
이것은 aMule의 시스템 단위입니다.
[Unit]
Description=aMule Daemon
After=network.target
Requires=autofs.service
[Service]
User=amuled
Type=forking
ExecStart=/etc/init.d/amule-daemon start
ExecStop=/etc/init.d/amule-daemon stop
ExecReload=/etc/init.d/amule-daemon restart
[Install]
WantedBy=multi-user.target
참고: 이 Requires=autofs.service
지시어는 필수가 아닙니다. autofs
읽기/쓰기로 구성된 서비스에 대한 NFS 드라이브를 마운트하는 데 사용했기 때문에 여기에 있습니다 .
답변2
debian/ubuntu에서 다음을 수행하여 /etc/default/amule-daemon
편집 sudo nano /etc/default/amule-daemon
하고 넣습니다 AMULED_USER="user1"
(현재 사용자가 user1인 경우).
그런 다음 데몬을 다시 시작하십시오.sudo systemctl restart amule-daemon.service