12 lines
133 B
Bash
Executable File
12 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "${1}" = "purge" ]; then
|
|
rm -f /etc/initramfs-tools/conf.d/resume
|
|
rm -f /etc/initramfs-tools/modules
|
|
fi
|
|
|
|
|
|
|