7 lines
88 B
Bash
7 lines
88 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "purge" ] ; then
|
|
update-rc.d passwd remove >/dev/null
|
|
fi
|