Linux Mint Debianシステムに同期をインストールします/etc/init.d
。このチュートリアル。シンボリックリンクが/etc/rc.*
存在し、スクリプトを手動で(ルートとして)実行すると、デーモンを正常に起動および停止できます。ただし、起動時にスクリプトは起動しません。
スクリプトは次のとおりです。
#!/bin/sh
### BEGIN INIT INFO
# Provides: syncthing
# 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: Multi-user daemonized version of syncthing.
# Description: Starts the syncthing daemon for all registered users.
### END INIT INFO
# Replace with users you want to run syncthing clients for
syncthing_USERS="XXXXXX"
DAEMON=/opt/syncthing-linux-amd64-v0.10.8/syncthing
echo "This is /etc/init.d/syncthing" > /tmp/syncthing.txt
startd() {
echo "Trying to start daemons..." >> /tmp/syncthing.txt
for stuser in $syncthing_USERS; do
echo "Trying $stuser" >> /tmp/syncthing.txt
HOMEDIR=$(getent passwd $stuser | awk -F: '{print $6}')
echo "HOMEDIR = $HOMEDIR" >> /tmp/syncthing.txt
echo "config = $config" >> /tmp/syncthing.txt
if [ -f $config ]; then
echo "Starting syncthiing for $stuser"
start-stop-daemon -b -o -c $stuser -S -u $stuser -x $DAEMON
else
echo "Couldn't start syncthing for $stuser (no $config found)"
fi
done
}
stopd() {
for stuser in $syncthing_USERS; do
dbpid=$(pgrep -fu $stuser $DAEMON)
if [ ! -z "$dbpid" ]; then
echo "Stopping syncthing for $stuser"
start-stop-daemon -o -c $stuser -K -u $stuser -x $DAEMON
fi
done
}
status() {
for stuser in $syncthing_USERS; do
dbpid=$(pgrep -fu $stuser $DAEMON)
if [ -z "$dbpid" ]; then
echo "syncthing for USER $stuser: not running."
else
echo "syncthing for USER $stuser: running (pid $dbpid)"
fi
done
}
case "$1" in
start) startd
;;
stop) stopd
;;
restart|reload|force-reload) stopd && startd
;;
status) status
;;
*) echo "Usage: /etc/init.d/syncthing {start|stop|reload|force-reload|restart|status}"
exit 1
;;
esac
exit 0
以下はシンボリックリンクです:
$find /etc/rc* -name "*syncthing*"
/etc/rc0.d/K01syncthing
/etc/rc1.d/K01syncthing
/etc/rc2.d/S01syncthing
/etc/rc3.d/S01syncthing
/etc/rc4.d/S01syncthing
/etc/rc5.d/S01syncthing
/etc/rc6.d/K01syncthing
私の現在のランレベルは
$/sbin/runlevel
N 2
デバッグ目的で/ tmpのファイルにパイプされるいくつかのechoステートメントを一番上に挿入しました。驚くべきことに、起動時にスクリプトが実行されますが、デーモンは起動せずにファイルを読み取ります。
This is /etc/init.d/syncthing
Trying to start daemons...
Trying XXXXXX
HOMEDIR = /home/XXXXXX
config =
rootでスクリプトを実行して起動した後に手動で起動すると、出力も生成され、出力は同じです。どうしたの?
私が理解していないもう1つのことは、スクリプトが$ configファイルをテストしますが、その変数が定義されていないため、ファイルが存在しないことです。ところで、このテストが時々真に評価されたり、時には偽と評価されるようですね。
私は何を見逃していますか?
答え1
わかりました。私のhomedirはecryptfsを使用して暗号化されており、ログインしたときにのみ復号化されます。そのため、起動中にバイナリが正しく起動する必要がある ~/.config/syncthing/* にアクセスできません。もちろん、スクリプトを手動で起動するとログインしているので、すべてがうまく機能します。
愚かな私。
ちなみに、start-stop-daemonの--no-closeオプションはヒントを提供し、デーモンの出力をファイルにパイプできるようにします。とにかく、ご意見ありがとうございました!
エンノ