9 lines
123 B
Bash
9 lines
123 B
Bash
#!/bin/sh
|
|
|
|
# Skip if systemd is running.
|
|
if [ -d /run/systemd/system ]; then
|
|
exit 0
|
|
fi
|
|
|
|
/usr/libexec/dpkg/dpkg-db-backup
|