mirror of
https://github.com/key-networks/ztncui.git
synced 2024-08-31 04:28:00 +00:00
12 lines
175 B
Bash
Executable File
12 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ETC='/opt/key-networks/ztncui/etc'
|
|
|
|
echo "Copying default password file..."
|
|
cp -v $ETC/default.passwd $ETC/passwd
|
|
if [ $? -eq 0 ]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|