mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 01:26:38 +02:00
14 lines
318 B
Bash
14 lines
318 B
Bash
#!/bin/sh
|
|
|
|
new=$1
|
|
old=$2
|
|
|
|
# if current is not older than 0.0.11 we exit.
|
|
if ! [ "$(apk version -t $old 0.0.11)" = "<" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
sqlite3 /var/lib/freeswitch/db/voicemail_default.db "UPDATE voicemail_params SET descr='Passwords must be all numbers and at least three digits' WHERE name='vm-password'"
|
|
|
|
exit 0
|
|
|