File: ironic-python-agent.postrm

package info (click to toggle)
ironic-python-agent 11.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,508 kB
  • sloc: python: 36,248; sh: 60; makefile: 29
file content (11 lines) | stat: -rw-r--r-- 118 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

if [ "${1}" = "purge" ] ; then
        rm -rf /var/log/ironic-python-agent
fi

#DEBHELPER#

exit 0