File: config

package info (click to toggle)
abook 0.6.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,976 kB
  • sloc: ansic: 8,988; sh: 4,649; makefile: 44; sed: 16
file content (20 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# config script for abook
# copyright 2012 by Rhonda D'Vine <rhonda@debian.org>
# Licenced under WTFPLv2

set -e

action=$1
version=$2

# Source debconf library.
. /usr/share/debconf/confmodule

db_unregister abook/files_moved || true

# create the /etc/Muttrc.d/ snippet?
db_input medium abook/muttrc.d || true
db_go

exit 0