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