14 lines
285 B
Bash
Executable File
14 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
[ "$1" != "upgrade" ] && update-alternatives --remove sar /usr/bin/sar.sysstat
|
|
|
|
|
|
# Automatically added by dh_installdeb/13.14.1ubuntu5
|
|
dpkg-maintscript-helper rm_conffile /etc/profile.d/sysstat.sh 11.7.3\~ sysstat -- "$@"
|
|
# End automatically added section
|
|
|
|
|
|
exit 0
|