mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
8 lines
91 B
Bash
8 lines
91 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /etc/config/sshd ]; then
|
|
uci -q set sshd.@sshd[0].UsePAM=0
|
|
fi
|
|
|
|
exit 0
|
|
|