blob: 752265e2780189d49d736b34beb9d0d1258a8c2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
if [ "$1" = "purge" ]; then
sed -i -e 'g/^password/d' /etc/pam.d/password
update-rc.d vyatta-config-reboot-params remove
fi
# Local Variables:
# mode: shell-script
# sh-indentation: 4
# End:
|