mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
Merge branch 'openelec-next' of github.com:OpenELEC/OpenELEC.tv into openelec-next
This commit is contained in:
commit
e75b85176d
@ -42,4 +42,5 @@
|
|||||||
|
|
||||||
<string id="5020">SSH</string>
|
<string id="5020">SSH</string>
|
||||||
<string id="5021">Start ssh server at boot</string>
|
<string id="5021">Start ssh server at boot</string>
|
||||||
|
<string id="5022">Disable password authentication</string>
|
||||||
</strings>
|
</strings>
|
||||||
|
@ -73,5 +73,6 @@
|
|||||||
<setting label="5020" type="lsep"/>
|
<setting label="5020" type="lsep"/>
|
||||||
<setting type="sep" />
|
<setting type="sep" />
|
||||||
<setting id="SSHD_START" type="bool" label="5021" default="false" />
|
<setting id="SSHD_START" type="bool" label="5021" default="false" />
|
||||||
|
<setting id="SSHD_DISABLE_PW_AUTH" type="bool" label="5022" default="false" visible="eq(-1,true)"/>
|
||||||
</category>
|
</category>
|
||||||
</settings>
|
</settings>
|
||||||
|
@ -81,10 +81,16 @@
|
|||||||
cp /etc/ssh/known_hosts $HOME/.ssh
|
cp /etc/ssh/known_hosts $HOME/.ssh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if password authentication is disabled
|
||||||
|
OPTIONS=""
|
||||||
|
|
||||||
|
if [ "$SSHD_DISABLE_PW_AUTH" == "true" ] ; then
|
||||||
|
OPTIONS="-o 'PasswordAuthentication no'"
|
||||||
|
fi
|
||||||
progress "Starting SSH Server"
|
progress "Starting SSH Server"
|
||||||
|
|
||||||
mkdir -p /var/empty
|
mkdir -p /var/empty
|
||||||
chmod -R 600 /var/empty
|
chmod -R 600 /var/empty
|
||||||
$SSHD
|
eval $SSHD $OPTIONS
|
||||||
fi
|
fi
|
||||||
)&
|
)&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user