preinst is in asciidoc 8.6.9-3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | #!/bin/sh
set -e
# This if statement avoids to add the "Pre-Depends: dpkg (>= 1.15.7.2)" in
# the debian/control file
if dpkg-maintscript-helper supports rm_conffile 2>/dev/null; then
# Bug #3416613
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/css-embedded-stylesheet.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/css-embedded.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/css.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/docbook-sgml.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/html.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/xhtml.conf 8.6.7-1~ -- "$@"
#Bug #610208
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/flask.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/asciidoc-manpage.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/volnitsky-manpage.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/flask-manpage.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/volnitsky.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/xhtml-deprecated.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/math.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/docbook-xsl/shaded-literallayout.patch 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/xhtml-deprecated-css.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/xhtml-deprecated-manpage.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/xhtml-deprecated.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/code-filter-test-c++.txt 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/code-filter-test.txt 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/source-highlight-filter-test.txt 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/code-filter.py 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/code-filter.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/source-highlight-filter.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/music-filter.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/music-filter-test.txt 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/code-filter-readme.txt 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/filters/music2png.py 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/linuxdoc.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/t.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/docbook.conf 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/xhtml11-manpage.css 8.6.7-1~ -- "$@"
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/stylesheets/xhtml11.css 8.6.7-1~ -- "$@"
#Bug #
dpkg-maintscript-helper rm_conffile \
/etc/asciidoc/wordpress.conf 8.6.9-1~ -- "$@"
fi
#Bug #747553
if dpkg-maintscript-helper supports dir_to_symlink 2>/dev/null; then
dpkg-maintscript-helper dir_to_symlink \
/usr/share/asciidoc/images/icons /usr/share/asciidoc/icons 8.6.9-3~ -- "$@"
fi
|