summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2017-03-07 17:10:36 +0000
committerMarc Espie <espie@cvs.openbsd.org>2017-03-07 17:10:36 +0000
commit1ec26cad0c7aeda157aec4f46b72f411438dca17 (patch)
tree78b1bc531106b9ed10fbda63e5b28eabfcb9e986 /usr.sbin/pkg_add
parent4e2171b30f78448da28f5c9633caacc258bb2532 (diff)
somehow it didn't get removed even though it's no longer installed
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r--usr.sbin/pkg_add/pkg.conf.5125
1 files changed, 0 insertions, 125 deletions
diff --git a/usr.sbin/pkg_add/pkg.conf.5 b/usr.sbin/pkg_add/pkg.conf.5
deleted file mode 100644
index de97e50c5c8..00000000000
--- a/usr.sbin/pkg_add/pkg.conf.5
+++ /dev/null
@@ -1,125 +0,0 @@
-.\" $OpenBSD: pkg.conf.5,v 1.10 2017/02/05 14:07:45 rpe Exp $
-.\"
-.\" Copyright (c) 2010 Marc Espie
-.\"
-.\" All rights reserved.
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\" 1. Redistributions of source code must retain the above copyright
-.\" notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\" notice, this list of conditions and the following disclaimer in the
-.\" documentation and/or other materials provided with the distribution.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
-.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
-.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\"
-.Dd $Mdocdate: February 5 2017 $
-.Dt PKG.CONF 5
-.Os
-.Sh NAME
-.Nm pkg.conf
-.Nd system-wide package system configuration
-.Sh DESCRIPTION
-The file
-.Pa /etc/pkg.conf
-contains system-wide options related to package handling, as a list of
-.Sq keyword=value
-lines.
-.Pp
-Currently defined options are as follows:
-.Pp
-.Bl -tag -width fullkeyword -compact
-.It Ar fullwidth
-Set to
-.Ar yes
-if you really want to use the full width of the terminal for the progressmeter.
-.It Ar loglevel
-.Xr pkg_add 1
-and
-.Xr pkg_delete 1
-will
-.Xr syslog 3
-installations, updates and deletions by default.
-Set to
-.Ar 0
-to avoid logging entirely.
-Levels higher than
-.Ar 1
-may log more information in the future.
-.It Ar installpath
-URL to package repository.
-Used for accessing packages if the environment variable
-.Ev PKG_PATH
-is not defined and no further options are defined.
-.Pp
-Special sequences
-.Sq %a ,
-.Sq %c ,
-.Sq %m ,
-.Sq %v
-will be expanded to
-.Sq package architecture ,
-.Sq OS version or snapshots ,
-.Sq full mirror path
-and
-.Sq OS version
-respectively.
-If a bare hostname is given, the standard /pub/OpenBSD path will be
-used automatically, e.g.\&
-.Bd -literal -offset indent
-installpath = http://somesite.example.org/updates/%c/%a/
-installpath += openbsd-mirror.example.org
-.Ed
-.Pp
-should work.
-.It Ar nochecksum
-Set to
-.Ar yes
-to waive checksums during package deletions.
-.It Ar ntogo
-Set to
-.Ar yes
-to display (done/total) number of package messages.
-.El
-.Pp
-Each option uses a separate line, and follows the following template:
-.Bd -literal -offset indent
-keyword = value
-.Ed
-.Pp
-A list of values can also be specified over several lines using the variation:
-.Bd -literal -offset indent
-keyword += value
-keyword += value
-\&...
-.Ed
-.Pp
-Keywords are case-insensitive.
-.Pp
-Blank lines and comment lines (introduced by a #) are ignored.
-.Pp
-Unknown keywords are ignored.
-.Sh FILES
-.Pa /etc/pkg.conf
-.Sh SEE ALSO
-.Xr pkg_add 1 ,
-.Xr pkg_create 1 ,
-.Xr pkg_delete 1 ,
-.Xr pkg_info 1 ,
-.Xr pkg_check 8
-.Sh HISTORY
-The
-.Nm
-mechanism and format first appeared in
-.Ox 4.8 .