[Oval-commits] r234 - trunk/oval-agent/debian

Javier Fernandez-Sanguino Pen~a jfs at alioth.debian.org
Tue Sep 4 19:46:25 UTC 2007


Author: jfs
Date: 2007-09-04 19:46:25 +0000 (Tue, 04 Sep 2007)
New Revision: 234

Removed:
   trunk/oval-agent/debian/manpage.1.ex
   trunk/oval-agent/debian/postinst.ex
   trunk/oval-agent/debian/postrm.ex
   trunk/oval-agent/debian/preinst.ex
   trunk/oval-agent/debian/prerm.ex
Log:
Remove debhelper examples

Deleted: trunk/oval-agent/debian/manpage.1.ex
===================================================================
--- trunk/oval-agent/debian/manpage.1.ex	2007-09-04 19:45:40 UTC (rev 233)
+++ trunk/oval-agent/debian/manpage.1.ex	2007-09-04 19:46:25 UTC (rev 234)
@@ -1,59 +0,0 @@
-.\"                                      Hey, EMACS: -*- nroff -*-
-.\" First parameter, NAME, should be all caps
-.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
-.\" other parameters are allowed: see man(7), man(1)
-.TH OVAL-AGENT SECTION "Август 23, 2007"
-.\" Please adjust this date whenever revising the manpage.
-.\"
-.\" Some roff macros, for reference:
-.\" .nh        disable hyphenation
-.\" .hy        enable hyphenation
-.\" .ad l      left justify
-.\" .ad b      justify to both left and right margins
-.\" .nf        disable filling
-.\" .fi        enable filling
-.\" .br        insert line break
-.\" .sp <n>    insert n+1 empty lines
-.\" for manpage-specific macros, see man(7)
-.SH NAME
-oval-agent \- program to do something
-.SH SYNOPSIS
-.B oval-agent
-.RI [ options ] " files" ...
-.br
-.B bar
-.RI [ options ] " files" ...
-.SH DESCRIPTION
-This manual page documents briefly the
-.B oval-agent
-and
-.B bar
-commands.
-.PP
-.\" TeX users may be more comfortable with the \fB<whatever>\fP and
-.\" \fI<whatever>\fP escape sequences to invode bold face and italics, 
-.\" respectively.
-\fBoval-agent\fP is a program that...
-.SH OPTIONS
-These programs follow the usual GNU command line syntax, with long
-options starting with two dashes (`-').
-A summary of options is included below.
-For a complete description, see the Info files.
-.TP
-.B \-h, \-\-help
-Show summary of options.
-.TP
-.B \-v, \-\-version
-Show version of program.
-.SH SEE ALSO
-.BR bar (1),
-.BR baz (1).
-.br
-The programs are documented fully by
-.IR "The Rise and Fall of a Fooish Bar" ,
-available via the Info system.
-.SH AUTHOR
-oval-agent was written by <upstream author>.
-.PP
-This manual page was written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>,
-for the Debian project (but may be used by others).

Deleted: trunk/oval-agent/debian/postinst.ex
===================================================================
--- trunk/oval-agent/debian/postinst.ex	2007-09-04 19:45:40 UTC (rev 233)
+++ trunk/oval-agent/debian/postinst.ex	2007-09-04 19:46:25 UTC (rev 234)
@@ -1,41 +0,0 @@
-#!/bin/sh
-# postinst script for oval-agent
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <postinst> `abort-remove'
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    configure)
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-

Deleted: trunk/oval-agent/debian/postrm.ex
===================================================================
--- trunk/oval-agent/debian/postrm.ex	2007-09-04 19:45:40 UTC (rev 233)
+++ trunk/oval-agent/debian/postrm.ex	2007-09-04 19:46:25 UTC (rev 234)
@@ -1,39 +0,0 @@
-#!/bin/sh
-# postrm script for oval-agent
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postrm> `remove'
-#        * <postrm> `purge'
-#        * <old-postrm> `upgrade' <new-version>
-#        * <new-postrm> `failed-upgrade' <old-version>
-#        * <new-postrm> `abort-install'
-#        * <new-postrm> `abort-install' <old-version>
-#        * <new-postrm> `abort-upgrade' <old-version>
-#        * <disappearer's-postrm> `disappear' <overwriter>
-#          <overwriter-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-

Deleted: trunk/oval-agent/debian/preinst.ex
===================================================================
--- trunk/oval-agent/debian/preinst.ex	2007-09-04 19:45:40 UTC (rev 233)
+++ trunk/oval-agent/debian/preinst.ex	2007-09-04 19:46:25 UTC (rev 234)
@@ -1,37 +0,0 @@
-#!/bin/sh
-# preinst script for oval-agent
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <new-preinst> `install'
-#        * <new-preinst> `install' <old-version>
-#        * <new-preinst> `upgrade' <old-version>
-#        * <old-preinst> `abort-upgrade' <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    install|upgrade)
-    ;;
-
-    abort-upgrade)
-    ;;
-
-    *)
-        echo "preinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-

Deleted: trunk/oval-agent/debian/prerm.ex
===================================================================
--- trunk/oval-agent/debian/prerm.ex	2007-09-04 19:45:40 UTC (rev 233)
+++ trunk/oval-agent/debian/prerm.ex	2007-09-04 19:46:25 UTC (rev 234)
@@ -1,40 +0,0 @@
-#!/bin/sh
-# prerm script for oval-agent
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <prerm> `remove'
-#        * <old-prerm> `upgrade' <new-version>
-#        * <new-prerm> `failed-upgrade' <old-version>
-#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-#        * <deconfigured's-prerm> `deconfigure' `in-favour'
-#          <package-being-installed> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    remove|upgrade|deconfigure)
-    ;;
-
-    failed-upgrade)
-    ;;
-
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-




More information about the Oval-commits mailing list