File: netplan.postrm

package info (click to toggle)
plan 1.8.4-9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,964 kB
  • ctags: 1,986
  • sloc: ansic: 24,493; perl: 1,361; makefile: 531; sh: 516; yacc: 119; sed: 17
file content (25 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh -e

#
# plan post-removal script
#

# Remove the netplan user and delete netplan's homedir /var/lib/plan
if [ "$1" = "purge" ] ; then
    echo >&2 "Removing user netplan"
    userdel netplan || echo >&2 "WARNING: Problem removing user netplan."
fi

# Remove the netplan group
if [ "$1" = "purge" ] && grep -q '^netplan:[^:]*:63434' /etc/group ; then
    echo >&2 "Removing group netplan"
    groupdel netplan || echo >&2 "WARNING: Problem removing group netplan."
fi

# Removing /var/lib/plan ant files in /etc
if [ "$1" = "purge" ] ; then
    echo >&2 "Removing /var/lib/plan"
    rm -rf /var/lib/plan /etc/plan/netplan-acl
fi

#DEBHELPER#