# ex:ts=8 sw=4: # $OpenBSD: Paths.pm,v 1.6 2007/08/28 10:39:03 espie Exp $ # # Copyright (c) 2007 Marc Espie # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. use strict; use warnings; package OpenBSD::Paths; # Commands sub ldconfig() { '/sbin/ldconfig' } sub chroot() { '/usr/sbin/chroot' } sub mkfontscale() { '/usr/X11R6/bin/mkfontscale' } sub mkfontdir() { '/usr/X11R6/bin/mkfontdir' } sub fc_cache() { '/usr/X11R6/bin/fc-cache' } sub install_info() { '/usr/bin/install-info' } sub useradd() { '/usr/sbin/useradd' } sub groupadd() { '/usr/sbin/groupadd' } sub sysctl() { '/sbin/sysctl' } sub openssl() { '/usr/sbin/openssl' } sub chmod() { '/bin/chmod' } # external command is used for symbolic modes. sub gzip() { '/usr/bin/gzip' } sub ftp() { $ENV{'FETCH_CMD'} || '/usr/bin/ftp' } sub groff() { '/usr/bin/groff' } sub sh() { '/bin/sh' } sub arch() { '/usr/bin/arch' } sub uname() { '/usr/bin/uname' } sub userdel() { '/usr/sbin/userdel' } sub groupdel() { '/usr/sbin/groupdel' } sub mknod() { '/sbin/mknod' } sub mount() { '/sbin/mount' } sub df() { '/bin/df' } sub ssh() { '/usr/bin/ssh' } sub make() { '/usr/bin/make' } sub mklocatedb() { '/usr/libexec/locate.mklocatedb' } # Various paths sub shells() { '/etc/shells' } sub pkgdb() { '/var/db/pkg' } sub localbase() { '/usr/local' } sub vartmp() { '/var/tmp' } sub portsdir() { '/usr/ports' } sub library_dirs() { ("/usr", "/usr/X11R6") } sub master_keys() { ("/etc/master_key") } sub font_cruft() { ("fonts.alias", "fonts.dir", "fonts.cache-1", "fonts.scale") } sub man_cruft() { ("whatis.db") } sub info_cruft() { ("dir") } 1;