Update Webmin to 1.340.
pkgsrc chages: use full distfile instead of non version indivisual module files. Version 1.340 (8 April 2007) * Change the default Blue Framed theme to match the style of www.webmin.com, and generally look nicer. * User interface cleanups in various modules (Apache, Backup Config, Webmin Configuration and others), adding tabs to reduce the size of pages and converting code to use ui-lib.pl. * The Perl Modules module can now fetch RPM or Deb packaged modules from YUM or APT, where available. * Added easy fields for sending SMS messages in the System and Server Status module (for US carriers that have email to SMS gateways). * Replace the old HTMLarea widget for HTML editing in the File Manager and Read User Mail modules with Xinha. * Linux quotas are now set with the setquota command, which shows up nicely in the actions log. * Optimizations to speed up getting the hostname and Postfix config settings. * Improved YUM and Redhat Network support in the Software Packages module. * View the detailed change log. Version 1.330 (27 February 2007) * If the underlying OS is upgraded after Webmin is installed, a message is displayed on the main page prompting you to fix it. * Added a feature in the BIND module for updating an IP address in multiple zones at once. * The File Manager now automatic detects HTML files and launches the correct editor. * Improved the LDAP module's support for large databases. * When there are too many tables or databases to display in the MySQL and PostgreSQL modules, a menu for selecting a specific table is shown instead. * Added functions to ui-lib.pl for tabs and hidden table sections. * Added support for comments to the Shorewall module, and improved logging * The Webmin Actions Log module can now rollback selected files changed by an action, rather than all of them. * View the detailed change log. Version 1.320 (21 January 2007) * Added the PHP Configuration module for managing php.ini. * Changed the default theme for new installs to the Blue Framed theme. * Improved handling of large file uploads so that they are no longer read into memory by Webmin webserver. Also added a progress bar window for tracking uploads. * Added checkboxes for deleting multiple objects at once in several modules. * Changed all rows of links (like Select all / Invert selection / Add something) to put | characters between them, to improve readability. * Big improvements in Windows support in various modules and the Webmin core. * Enhanced the System and Server Status module to allow monitoring of all hosts in a Webmin server group. * View the detailed change log. Version 1.310 (28 November 2006) * Big improvements in Ubuntu support, including the Bootup and Shutdown module, mounting filesystems specified with the UUID syntax, and various default module config changes. * Re-designed the Simple Blue theme to use frames. * Added support for IPv6 addresses in modules where the underlying servers allow them. * Supported HFS and FATX filesystems under Linux. * MySQL backups can now be compressed with gzip or bzip2. * Added file locking and logging to the Postfix module, and improved access control features. * Added checkboxes and buttons for mass deletion in the Cron and DHCP modules. * Added access control options for the Info window to the File Manager module, and a feature to allow extraction of ZIP files on the server. * View the detailed change log. Version 1.300 (15 September 2006) * Fixed security holes that allow the source of Webmin programs to be viewed, and allow cross-site-scripting attacks. * XML-RPC clients can now call Webmin API functions. * On systems with no root password, users with sudo access can login to Webmin as root. * Improved support for latest Debian and Fedora releases, including the new IPtables config system in Debian 3.1. * The file manager can now extract tar.bz2 files, store a history of entered paths, and show the total size of a directory. * The Filesystem Backup module can backup and restore TAR and dump files over FTP. * MySQL server variables and connections can be viewed and changes. * Table data can be sorted by clicking on headers in the MySQL and PostgreSQL modules. * Improved support for PostgreSQL 8, including editing tables with no OID field. * Sendmail and Postfix aliases and maps can have a comment associated with each entry. * Squid 2.6 is now supported. * View the detailed change log. Version 1.290 (29 June 2006) * Fixed a security hole that would allow a remote attacker to view any file on the system. * Added the LDAP Client module, for setting up a Linux system to get users and groups from an LDAP server. * Added support for sending email when a group is over quota to the Disk Quotas module. * Several other small fixes for bugs found since 1.280. * View the detailed change log. Version 1.280 (16 June 2006) * Added the Simple Blue theme, a less graphics-heavy design which may eventually become the default. This theme takes advantage of changes in many modules to use highlighting on table rows. * Updated the Apache module to support version 2.2.0. * Updated the various operating-specific NFS server modules to support mass deletion of exports, and to internationalize those that were using hard-coded text strings. * Updated various modules to allow deletion of multiple objects (such as table fields, Samba shares, PostgreSQL grants, Squid ACLs and so on) at once. * Added configuration options to the Read User Mail module for the date format, pager arrow locations, timezone and separate message window mode. * Updated the MySQL module to support views in MySQL version 5. * Enhanced the System and Server Status module to allow the selection of multiple hosts for each monitor, added a monitor type for testing an SQL server, and updated the Network Traffic monitor to support FreeBSD. * Fixed a security hole that allows remote viewing of any file on the system when Webmin is run on a Windows server. * View the detailed change log.
This commit is contained in:
parent
53f33666cf
commit
64f877f670
130 changed files with 3025 additions and 1123 deletions
|
@ -1,17 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:22:58 obache Exp $
|
||||
|
||||
DISTNAME= apache
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= apache
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for configuring Apache servers
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
||||
CONF_FILES_PERMS+= ${WBM_EGDIR}/${WBMNAME}/site \
|
||||
|
@ -22,6 +14,6 @@ post-build:
|
|||
${TOUCH} ${TOUCH_ARGS} ${WRKDIR}/site
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA} ${WRKDIR}/site ${WBM_EGDIR}/${WBMNAME}/site
|
||||
${INSTALL_DATA} ${WRKDIR}/site ${WBM_EGDIR}/${WBM_NAME}/site
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:39:04 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
share/examples/webmin/apache/config
|
||||
share/examples/webmin/apache/site
|
||||
share/webmin/apache/CHANGELOG
|
||||
|
@ -64,11 +64,13 @@ share/webmin/apache/config-windows
|
|||
share/webmin/apache/config.info
|
||||
share/webmin/apache/config.info.bg
|
||||
share/webmin/apache/config.info.ca
|
||||
share/webmin/apache/config.info.da
|
||||
share/webmin/apache/config.info.de
|
||||
share/webmin/apache/config.info.es
|
||||
share/webmin/apache/config.info.fa
|
||||
share/webmin/apache/config.info.fr
|
||||
share/webmin/apache/config.info.hu
|
||||
share/webmin/apache/config.info.ja_JP.UTF-8
|
||||
share/webmin/apache/config.info.ja_JP.euc
|
||||
share/webmin/apache/config.info.nl
|
||||
share/webmin/apache/config.info.pl
|
||||
|
@ -79,7 +81,9 @@ share/webmin/apache/config.info.sv
|
|||
share/webmin/apache/config.info.tr
|
||||
share/webmin/apache/config.info.uk_UA
|
||||
share/webmin/apache/config.info.zh_CN
|
||||
share/webmin/apache/config.info.zh_CN.UTF-8
|
||||
share/webmin/apache/config.info.zh_TW.Big5
|
||||
share/webmin/apache/config.info.zh_TW.UTF-8
|
||||
share/webmin/apache/config_solaris.txt.1.25
|
||||
share/webmin/apache/core.pl
|
||||
share/webmin/apache/create_dir.cgi
|
||||
|
@ -140,6 +144,7 @@ share/webmin/apache/index.cgi
|
|||
share/webmin/apache/install_check.pl
|
||||
share/webmin/apache/lang/bg
|
||||
share/webmin/apache/lang/ca
|
||||
share/webmin/apache/lang/da
|
||||
share/webmin/apache/lang/de
|
||||
share/webmin/apache/lang/en
|
||||
share/webmin/apache/lang/es
|
||||
|
@ -147,7 +152,9 @@ share/webmin/apache/lang/fa
|
|||
share/webmin/apache/lang/fr
|
||||
share/webmin/apache/lang/hu
|
||||
share/webmin/apache/lang/it
|
||||
share/webmin/apache/lang/ja_JP.UTF-8
|
||||
share/webmin/apache/lang/ja_JP.euc
|
||||
share/webmin/apache/lang/ko_KR.UTF-8
|
||||
share/webmin/apache/lang/ko_KR.euc
|
||||
share/webmin/apache/lang/nl
|
||||
share/webmin/apache/lang/pl
|
||||
|
@ -159,7 +166,9 @@ share/webmin/apache/lang/sv
|
|||
share/webmin/apache/lang/tr
|
||||
share/webmin/apache/lang/uk_UA
|
||||
share/webmin/apache/lang/zh_CN
|
||||
share/webmin/apache/lang/zh_CN.UTF-8
|
||||
share/webmin/apache/lang/zh_TW.Big5
|
||||
share/webmin/apache/lang/zh_TW.UTF-8
|
||||
share/webmin/apache/list_authgroups.cgi
|
||||
share/webmin/apache/list_authusers.cgi
|
||||
share/webmin/apache/log_parser.pl
|
||||
|
@ -171,7 +180,15 @@ share/webmin/apache/mod_alias.pl
|
|||
share/webmin/apache/mod_apachessl.pl
|
||||
share/webmin/apache/mod_asis.pl
|
||||
share/webmin/apache/mod_auth.pl
|
||||
share/webmin/apache/mod_auth_basic.pl
|
||||
share/webmin/apache/mod_auth_dbm.pl
|
||||
share/webmin/apache/mod_auth_digest.pl
|
||||
share/webmin/apache/mod_authn_dbm.pl
|
||||
share/webmin/apache/mod_authn_file.pl
|
||||
share/webmin/apache/mod_authz_dbm.pl
|
||||
share/webmin/apache/mod_authz_groupfile.pl
|
||||
share/webmin/apache/mod_authz_host.pl
|
||||
share/webmin/apache/mod_authz_owner.pl
|
||||
share/webmin/apache/mod_autoindex.pl
|
||||
share/webmin/apache/mod_bandwidth.pl
|
||||
share/webmin/apache/mod_browser.pl
|
||||
|
@ -184,6 +201,8 @@ share/webmin/apache/mod_disk_cache.pl
|
|||
share/webmin/apache/mod_env.pl
|
||||
share/webmin/apache/mod_expires.pl.broken
|
||||
share/webmin/apache/mod_ext_filter.pl
|
||||
share/webmin/apache/mod_fastcgi.pl
|
||||
share/webmin/apache/mod_fcgid.pl
|
||||
share/webmin/apache/mod_imap.pl
|
||||
share/webmin/apache/mod_include.pl
|
||||
share/webmin/apache/mod_info.pl
|
||||
|
@ -201,6 +220,7 @@ share/webmin/apache/mod_php3.pl
|
|||
share/webmin/apache/mod_php4.pl
|
||||
share/webmin/apache/mod_php5.pl
|
||||
share/webmin/apache/mod_proxy.pl
|
||||
share/webmin/apache/mod_ruby.pl
|
||||
share/webmin/apache/mod_setenvif.pl
|
||||
share/webmin/apache/mod_speling.pl
|
||||
share/webmin/apache/mod_ssl.pl
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:39:04 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/apache.wbm.gz) = cc9e4c4e18e771f38f4ec9fde15026af0e8ecda9
|
||||
RMD160 (webmin-modules-1.270/apache.wbm.gz) = 92e2452017e801de8cd656abcd76f119b1da81a5
|
||||
Size (webmin-modules-1.270/apache.wbm.gz) = 342821 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:22:58 obache Exp $
|
||||
|
||||
DISTNAME= at
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= at
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to schedule execution of commands
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:39:15 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
share/examples/webmin/at/config
|
||||
share/webmin/at/CHANGELOG
|
||||
share/webmin/at/acl_security.pl
|
||||
|
@ -41,12 +41,15 @@ share/webmin/at/config.info.pt_BR
|
|||
share/webmin/at/config.info.ru_RU
|
||||
share/webmin/at/config.info.ru_SU
|
||||
share/webmin/at/config.info.sk
|
||||
share/webmin/at/config.info.sv
|
||||
share/webmin/at/config.info.tr
|
||||
share/webmin/at/config.info.uk_UA
|
||||
share/webmin/at/config.info.zh_TW.Big5
|
||||
share/webmin/at/config.info.zh_TW.UTF-8
|
||||
share/webmin/at/create_job.cgi
|
||||
share/webmin/at/defaultacl
|
||||
share/webmin/at/delete_job.cgi
|
||||
share/webmin/at/delete_jobs.cgi
|
||||
share/webmin/at/edit_job.cgi
|
||||
share/webmin/at/freebsd-lib.pl
|
||||
share/webmin/at/images/icon.gif
|
||||
|
@ -69,10 +72,13 @@ share/webmin/at/lang/pt_BR
|
|||
share/webmin/at/lang/ru_RU
|
||||
share/webmin/at/lang/ru_SU
|
||||
share/webmin/at/lang/sk
|
||||
share/webmin/at/lang/sv
|
||||
share/webmin/at/lang/tr
|
||||
share/webmin/at/lang/uk_UA
|
||||
share/webmin/at/lang/zh_CN
|
||||
share/webmin/at/lang/zh_CN.UTF-8
|
||||
share/webmin/at/lang/zh_TW.Big5
|
||||
share/webmin/at/lang/zh_TW.UTF-8
|
||||
share/webmin/at/linux-lib.pl
|
||||
share/webmin/at/macos-lib.pl
|
||||
share/webmin/at/module.info
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:39:15 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/at.wbm.gz) = 12c202c9f473743c934b79b424715cac92fc3272
|
||||
RMD160 (webmin-modules-1.270/at.wbm.gz) = 890113f871e2efcd563f23379a86293be35981b5
|
||||
Size (webmin-modules-1.270/at.wbm.gz) = 19758 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,15 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 15:39:59 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
|
||||
DISTNAME= bandwidth
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= bandwidth
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES= net
|
||||
|
||||
DEPENDS+= wbm-net>=1.270:../../sysutils/wbm-net
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to view bandwidth usage
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:39:59 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
share/examples/webmin/bandwidth/config
|
||||
share/webmin/bandwidth/CHANGELOG
|
||||
share/webmin/bandwidth/acl_security.pl
|
||||
|
@ -10,6 +10,7 @@ share/webmin/bandwidth/config.info.ca
|
|||
share/webmin/bandwidth/config.info.de
|
||||
share/webmin/bandwidth/config.info.es
|
||||
share/webmin/bandwidth/config.info.hu
|
||||
share/webmin/bandwidth/config.info.sv
|
||||
share/webmin/bandwidth/defaultacl
|
||||
share/webmin/bandwidth/help/intro.ca.html
|
||||
share/webmin/bandwidth/help/intro.html
|
||||
|
@ -24,12 +25,14 @@ share/webmin/bandwidth/lang/en
|
|||
share/webmin/bandwidth/lang/es
|
||||
share/webmin/bandwidth/lang/fr
|
||||
share/webmin/bandwidth/lang/hu
|
||||
share/webmin/bandwidth/lang/sv
|
||||
share/webmin/bandwidth/log_parser.pl
|
||||
share/webmin/bandwidth/module.info
|
||||
share/webmin/bandwidth/rotate.cgi
|
||||
share/webmin/bandwidth/rotate.pl
|
||||
share/webmin/bandwidth/setup.cgi
|
||||
share/webmin/bandwidth/turnoff.cgi
|
||||
share/webmin/bandwidth/uninstall.pl
|
||||
@dirrm share/webmin/bandwidth/lang
|
||||
@dirrm share/webmin/bandwidth/images
|
||||
@dirrm share/webmin/bandwidth/help
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:39:59 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:58 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/bandwidth.wbm.gz) = decc4efa4b25621ef82e377c396b8acd14eb4b2a
|
||||
RMD160 (webmin-modules-1.270/bandwidth.wbm.gz) = aca11b2249acd4a0dc981e50a283766f8fdd402b
|
||||
Size (webmin-modules-1.270/bandwidth.wbm.gz) = 24476 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
DISTNAME= bind8
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= bind8
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for managing ISC BIND 8.x DNS servers
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:40:22 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
share/examples/webmin/bind8/config
|
||||
share/webmin/bind8/CHANGELOG
|
||||
share/webmin/bind8/acl_security.pl
|
||||
|
@ -24,7 +24,7 @@ share/webmin/bind8/config-corel-linux
|
|||
share/webmin/bind8/config-debian-linux
|
||||
share/webmin/bind8/config-debian-linux-2.2
|
||||
share/webmin/bind8/config-debian-linux-3.0
|
||||
share/webmin/bind8/config-debian-linux-3.1
|
||||
share/webmin/bind8/config-debian-linux-3.1-*
|
||||
share/webmin/bind8/config-freebsd-2.1-2.2
|
||||
share/webmin/bind8/config-freebsd-3.0
|
||||
share/webmin/bind8/config-freebsd-3.1-3.5
|
||||
|
@ -55,7 +55,8 @@ share/webmin/bind8/config-solaris-10-*
|
|||
share/webmin/bind8/config-solaris-7-9
|
||||
share/webmin/bind8/config-suse-linux
|
||||
share/webmin/bind8/config-suse-linux-8.2
|
||||
share/webmin/bind8/config-suse-linux-9.0-*
|
||||
share/webmin/bind8/config-suse-linux-9.0-9.2
|
||||
share/webmin/bind8/config-suse-linux-9.3-*
|
||||
share/webmin/bind8/config-trustix-linux
|
||||
share/webmin/bind8/config-trustix-linux-2.1
|
||||
share/webmin/bind8/config-trustix-linux-2.2-*
|
||||
|
@ -70,6 +71,7 @@ share/webmin/bind8/config.info.de
|
|||
share/webmin/bind8/config.info.es
|
||||
share/webmin/bind8/config.info.fa
|
||||
share/webmin/bind8/config.info.fr
|
||||
share/webmin/bind8/config.info.ja_JP.UTF-8
|
||||
share/webmin/bind8/config.info.ja_JP.euc
|
||||
share/webmin/bind8/config.info.pl
|
||||
share/webmin/bind8/config.info.pt_BR
|
||||
|
@ -79,7 +81,9 @@ share/webmin/bind8/config.info.sv
|
|||
share/webmin/bind8/config.info.tr
|
||||
share/webmin/bind8/config.info.uk_UA
|
||||
share/webmin/bind8/config.info.zh_CN
|
||||
share/webmin/bind8/config.info.zh_CN.UTF-8
|
||||
share/webmin/bind8/config.info.zh_TW.Big5
|
||||
share/webmin/bind8/config.info.zh_TW.UTF-8
|
||||
share/webmin/bind8/convert_master.cgi
|
||||
share/webmin/bind8/convert_slave.cgi
|
||||
share/webmin/bind8/create_delegation.cgi
|
||||
|
@ -173,8 +177,10 @@ share/webmin/bind8/lang/es
|
|||
share/webmin/bind8/lang/fa
|
||||
share/webmin/bind8/lang/fr
|
||||
share/webmin/bind8/lang/it
|
||||
share/webmin/bind8/lang/ja_JP.UTF-8
|
||||
share/webmin/bind8/lang/ja_JP.euc
|
||||
share/webmin/bind8/lang/ja_JP.jis
|
||||
share/webmin/bind8/lang/ko_KR.UTF-8
|
||||
share/webmin/bind8/lang/ko_KR.euc
|
||||
share/webmin/bind8/lang/pl
|
||||
share/webmin/bind8/lang/pt
|
||||
|
@ -185,13 +191,17 @@ share/webmin/bind8/lang/sv
|
|||
share/webmin/bind8/lang/tr
|
||||
share/webmin/bind8/lang/uk_UA
|
||||
share/webmin/bind8/lang/zh_CN
|
||||
share/webmin/bind8/lang/zh_CN.UTF-8
|
||||
share/webmin/bind8/lang/zh_TW.Big5
|
||||
share/webmin/bind8/lang/zh_TW.UTF-8
|
||||
share/webmin/bind8/list_gen.cgi
|
||||
share/webmin/bind8/list_slaves.cgi
|
||||
share/webmin/bind8/log_parser.pl
|
||||
share/webmin/bind8/mass_create.cgi
|
||||
share/webmin/bind8/mass_delete.cgi
|
||||
share/webmin/bind8/mass_form.cgi
|
||||
share/webmin/bind8/mass_update.cgi
|
||||
share/webmin/bind8/mass_update_form.cgi
|
||||
share/webmin/bind8/master_form.cgi
|
||||
share/webmin/bind8/module.info
|
||||
share/webmin/bind8/move_zone.cgi
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:40:22 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/bind8.wbm.gz) = 3c8712364f6bdefa868b05b2f87dfcbaca06c678
|
||||
RMD160 (webmin-modules-1.270/bind8.wbm.gz) = aac9c2082385170ef5ddff85828230475ec96b65
|
||||
Size (webmin-modules-1.270/bind8.wbm.gz) = 287848 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
DISTNAME= change-user
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= change-user
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to personalize Webmin user sessions
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 17:36:16 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
share/examples/webmin/change-user/config
|
||||
share/webmin/change-user/CHANGELOG
|
||||
share/webmin/change-user/acl_security.pl
|
||||
|
@ -15,6 +15,7 @@ share/webmin/change-user/lang/es
|
|||
share/webmin/change-user/lang/fa
|
||||
share/webmin/change-user/lang/fr
|
||||
share/webmin/change-user/lang/hu
|
||||
share/webmin/change-user/lang/ja_JP.UTF-8
|
||||
share/webmin/change-user/lang/ja_JP.euc
|
||||
share/webmin/change-user/lang/ms
|
||||
share/webmin/change-user/lang/nl
|
||||
|
@ -24,7 +25,9 @@ share/webmin/change-user/lang/sk
|
|||
share/webmin/change-user/lang/tr
|
||||
share/webmin/change-user/lang/uk_UA
|
||||
share/webmin/change-user/lang/zh_CN
|
||||
share/webmin/change-user/lang/zh_CN.UTF-8
|
||||
share/webmin/change-user/lang/zh_TW.Big5
|
||||
share/webmin/change-user/lang/zh_TW.UTF-8
|
||||
share/webmin/change-user/module.info
|
||||
@dirrm share/webmin/change-user/lang
|
||||
@dirrm share/webmin/change-user/images
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 17:36:16 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/change-user.wbm.gz) = 3f76afcd04ac1fd9b91dfc923a49dc2b59f3bb2f
|
||||
RMD160 (webmin-modules-1.270/change-user.wbm.gz) = 2b787f5eaf451a64400767e26cafc3a8b453df80
|
||||
Size (webmin-modules-1.270/change-user.wbm.gz) = 12628 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,17 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.3 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
DISTNAME= cluster-copy
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
PKGREVISION= 1
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= cluster-copy
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to schedule file transfers within a Webmin cluster
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:39:30 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/cluster-copy.wbm.gz) = b4b6b4cdb622d53f944123663b60d1cea207c0e6
|
||||
RMD160 (webmin-modules-1.270/cluster-copy.wbm.gz) = fb3229619d256e9c289faf77d5281582edc0202c
|
||||
Size (webmin-modules-1.270/cluster-copy.wbm.gz) = 14123 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,17 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.3 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
DISTNAME= cluster-cron
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
PKGREVISION= 1
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= cluster-cron
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to schedule cron jobs within a Webmin cluster
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:39:44 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
share/examples/webmin/cluster-cron/config
|
||||
share/webmin/cluster-cron/CHANGELOG
|
||||
share/webmin/cluster-cron/cluster-cron-lib.pl
|
||||
share/webmin/cluster-cron/cron.pl
|
||||
share/webmin/cluster-cron/delete.cgi
|
||||
share/webmin/cluster-cron/delete_jobs.cgi
|
||||
share/webmin/cluster-cron/edit.cgi
|
||||
share/webmin/cluster-cron/exec.cgi
|
||||
share/webmin/cluster-cron/help/intro.de.html
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:39:44 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/cluster-cron.wbm.gz) = a87977bdc059ee3d48f44a5af667535336c45587
|
||||
RMD160 (webmin-modules-1.270/cluster-cron.wbm.gz) = c9c5c912995c648da93cd36a6556166300167e59
|
||||
Size (webmin-modules-1.270/cluster-cron.wbm.gz) = 12080 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,15 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 21:40:03 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
DISTNAME= cluster-passwd
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= cluster-passwd
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES= cluster-useradmin
|
||||
|
||||
DEPENDS+= wbm-cluster-useradmin>=1.270:../../sysutils/wbm-cluster-useradmin
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to change users' passwords within a Webmin cluster
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:40:03 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/cluster-passwd.wbm.gz) = 798ae8b0ac2685f934dd9905c11482bd8f3c439f
|
||||
RMD160 (webmin-modules-1.270/cluster-passwd.wbm.gz) = 6a7d2d7a717936412e44a174939a0fc2b5f877ce
|
||||
Size (webmin-modules-1.270/cluster-passwd.wbm.gz) = 8190 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
DISTNAME= cluster-shell
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= cluster-shell
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to run commands across a Webmin cluster
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:40:17 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:22:59 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/cluster-shell.wbm.gz) = b4ddba8b814098eac95c558cf76c7c245b588356
|
||||
RMD160 (webmin-modules-1.270/cluster-shell.wbm.gz) = 9d7e5113881a248ea11dc5780a92925e47a4215b
|
||||
Size (webmin-modules-1.270/cluster-shell.wbm.gz) = 9058 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,15 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 21:40:32 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
DISTNAME= cluster-useradmin
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= cluster-useradmin
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
DEPENDS+= wbm-useradmin>=${WBM_VERSION}:../../sysutils/wbm-useradmin
|
||||
|
||||
DEPENDS+= wbm-useradmin>=1.270:../../sysutils/wbm-useradmin
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to manage users & groups within a Webmin cluster
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:40:32 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/cluster-useradmin.wbm.gz) = d12c124d42f523bb71f0f93d2b02dc0dad23a899
|
||||
RMD160 (webmin-modules-1.270/cluster-useradmin.wbm.gz) = ade1bec283edae9b07474820aacb1fb577118bb9
|
||||
Size (webmin-modules-1.270/cluster-useradmin.wbm.gz) = 31503 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
DISTNAME= cluster-webmin
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= cluster-webmin
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to manage Webmin settings across a Webmin cluster
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:40:45 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/cluster-webmin.wbm.gz) = 85a38d77f9df11eeb87c2960f0f4f9f432234c81
|
||||
RMD160 (webmin-modules-1.270/cluster-webmin.wbm.gz) = 79980561902ed5bfecbefee8026419bff7b3b4a4
|
||||
Size (webmin-modules-1.270/cluster-webmin.wbm.gz) = 52995 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:41 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
DISTNAME= custom
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= custom
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for creating custom action buttons
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:40:57 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
share/examples/webmin/custom/config
|
||||
share/webmin/custom/CHANGELOG
|
||||
share/webmin/custom/acl_security.pl
|
||||
|
@ -14,6 +14,7 @@ share/webmin/custom/config.info.nl
|
|||
share/webmin/custom/config.info.pl
|
||||
share/webmin/custom/config.info.ru_RU
|
||||
share/webmin/custom/config.info.ru_SU
|
||||
share/webmin/custom/config.info.sk
|
||||
share/webmin/custom/config.info.tr
|
||||
share/webmin/custom/config.info.uk_UA
|
||||
share/webmin/custom/custom-lib.pl
|
||||
|
@ -46,6 +47,7 @@ share/webmin/custom/help/cmd.nl.html
|
|||
share/webmin/custom/help/cmd.pl.html
|
||||
share/webmin/custom/help/cmd.sv.html
|
||||
share/webmin/custom/help/cmd.zh_TW.Big5.html
|
||||
share/webmin/custom/help/cmd.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/command.ca.html
|
||||
share/webmin/custom/help/command.de.html
|
||||
share/webmin/custom/help/command.es.html
|
||||
|
@ -55,6 +57,7 @@ share/webmin/custom/help/command.nl.html
|
|||
share/webmin/custom/help/command.pl.html
|
||||
share/webmin/custom/help/command.sv.html
|
||||
share/webmin/custom/help/command.zh_TW.Big5.html
|
||||
share/webmin/custom/help/command.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/create.ca.html
|
||||
share/webmin/custom/help/create.de.html
|
||||
share/webmin/custom/help/create.es.html
|
||||
|
@ -64,6 +67,7 @@ share/webmin/custom/help/create.nl.html
|
|||
share/webmin/custom/help/create.pl.html
|
||||
share/webmin/custom/help/create.sv.html
|
||||
share/webmin/custom/help/create.zh_TW.Big5.html
|
||||
share/webmin/custom/help/create.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/desc.ca.html
|
||||
share/webmin/custom/help/desc.de.html
|
||||
share/webmin/custom/help/desc.es.html
|
||||
|
@ -73,6 +77,7 @@ share/webmin/custom/help/desc.nl.html
|
|||
share/webmin/custom/help/desc.pl.html
|
||||
share/webmin/custom/help/desc.sv.html
|
||||
share/webmin/custom/help/desc.zh_TW.Big5.html
|
||||
share/webmin/custom/help/desc.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/dir.ca.html
|
||||
share/webmin/custom/help/dir.de.html
|
||||
share/webmin/custom/help/dir.html
|
||||
|
@ -85,6 +90,7 @@ share/webmin/custom/help/edit.nl.html
|
|||
share/webmin/custom/help/edit.pl.html
|
||||
share/webmin/custom/help/edit.sv.html
|
||||
share/webmin/custom/help/edit.zh_TW.Big5.html
|
||||
share/webmin/custom/help/edit.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/editor.ca.html
|
||||
share/webmin/custom/help/editor.de.html
|
||||
share/webmin/custom/help/editor.es.html
|
||||
|
@ -132,6 +138,7 @@ share/webmin/custom/help/intro.nl.html
|
|||
share/webmin/custom/help/intro.pl.html
|
||||
share/webmin/custom/help/intro.sv.html
|
||||
share/webmin/custom/help/intro.zh_TW.Big5.html
|
||||
share/webmin/custom/help/intro.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/noshow.ca.html
|
||||
share/webmin/custom/help/noshow.de.html
|
||||
share/webmin/custom/help/noshow.es.html
|
||||
|
@ -162,6 +169,7 @@ share/webmin/custom/help/raw.nl.html
|
|||
share/webmin/custom/help/raw.pl.html
|
||||
share/webmin/custom/help/raw.sv.html
|
||||
share/webmin/custom/help/raw.zh_TW.Big5.html
|
||||
share/webmin/custom/help/raw.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/run.ca.html
|
||||
share/webmin/custom/help/run.de.html
|
||||
share/webmin/custom/help/run.es.html
|
||||
|
@ -171,6 +179,7 @@ share/webmin/custom/help/run.nl.html
|
|||
share/webmin/custom/help/run.pl.html
|
||||
share/webmin/custom/help/run.sv.html
|
||||
share/webmin/custom/help/run.zh_TW.Big5.html
|
||||
share/webmin/custom/help/run.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/timeout.ca.html
|
||||
share/webmin/custom/help/timeout.de.html
|
||||
share/webmin/custom/help/timeout.html
|
||||
|
@ -183,6 +192,7 @@ share/webmin/custom/help/user.nl.html
|
|||
share/webmin/custom/help/user.pl.html
|
||||
share/webmin/custom/help/user.sv.html
|
||||
share/webmin/custom/help/user.zh_TW.Big5.html
|
||||
share/webmin/custom/help/user.zh_TW.UTF-8.html
|
||||
share/webmin/custom/help/usermin.ca.html
|
||||
share/webmin/custom/help/usermin.de.html
|
||||
share/webmin/custom/help/usermin.html
|
||||
|
@ -196,18 +206,23 @@ share/webmin/custom/lang/es
|
|||
share/webmin/custom/lang/fr
|
||||
share/webmin/custom/lang/hu
|
||||
share/webmin/custom/lang/it
|
||||
share/webmin/custom/lang/ja_JP.UTF-8
|
||||
share/webmin/custom/lang/ja_JP.euc
|
||||
share/webmin/custom/lang/ko_KR.UTF-8
|
||||
share/webmin/custom/lang/ko_KR.euc
|
||||
share/webmin/custom/lang/nl
|
||||
share/webmin/custom/lang/pl
|
||||
share/webmin/custom/lang/pt
|
||||
share/webmin/custom/lang/ru_RU
|
||||
share/webmin/custom/lang/ru_SU
|
||||
share/webmin/custom/lang/sk
|
||||
share/webmin/custom/lang/sv
|
||||
share/webmin/custom/lang/tr
|
||||
share/webmin/custom/lang/uk_UA
|
||||
share/webmin/custom/lang/zh_CN
|
||||
share/webmin/custom/lang/zh_CN.UTF-8
|
||||
share/webmin/custom/lang/zh_TW.Big5
|
||||
share/webmin/custom/lang/zh_TW.UTF-8
|
||||
share/webmin/custom/log_parser.pl
|
||||
share/webmin/custom/module.info
|
||||
share/webmin/custom/run.cgi
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:40:57 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/custom.wbm.gz) = f6fd9d0070e5fd51a99caa36532ef04024673fc2
|
||||
RMD160 (webmin-modules-1.270/custom.wbm.gz) = 5ca10492c4bf4411cb635dd8f7047e5149682178
|
||||
Size (webmin-modules-1.270/custom.wbm.gz) = 60857 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
DISTNAME= dhcpd
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= dhcpd
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for managing ISC DHCPd
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 04:02:22 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
share/examples/webmin/dhcpd/config
|
||||
share/webmin/dhcpd/CHANGELOG
|
||||
share/webmin/dhcpd/acl_security.pl
|
||||
|
@ -8,7 +8,7 @@ share/webmin/dhcpd/config-coherent-linux
|
|||
share/webmin/dhcpd/config-corel-linux
|
||||
share/webmin/dhcpd/config-debian-linux
|
||||
share/webmin/dhcpd/config-debian-linux-3.0
|
||||
share/webmin/dhcpd/config-debian-linux-3.1
|
||||
share/webmin/dhcpd/config-debian-linux-3.1-*
|
||||
share/webmin/dhcpd/config-freebsd
|
||||
share/webmin/dhcpd/config-generic-linux
|
||||
share/webmin/dhcpd/config-gentoo-linux
|
||||
|
@ -25,8 +25,9 @@ share/webmin/dhcpd/config-openbsd-3.6-*
|
|||
share/webmin/dhcpd/config-openserver
|
||||
share/webmin/dhcpd/config-osf1
|
||||
share/webmin/dhcpd/config-redhat-linux
|
||||
share/webmin/dhcpd/config-redhat-linux-14.0-*
|
||||
share/webmin/dhcpd/config-redhat-linux-6.0-6.2
|
||||
share/webmin/dhcpd/config-redhat-linux-7.0-*
|
||||
share/webmin/dhcpd/config-redhat-linux-7.0-13.0
|
||||
share/webmin/dhcpd/config-slackware-linux
|
||||
share/webmin/dhcpd/config-slackware-linux-4.0
|
||||
share/webmin/dhcpd/config-slackware-linux-7.1-*
|
||||
|
@ -35,32 +36,40 @@ share/webmin/dhcpd/config-solaris
|
|||
share/webmin/dhcpd/config-suse-linux
|
||||
share/webmin/dhcpd/config-suse-linux-7.1-7.3
|
||||
share/webmin/dhcpd/config-suse-linux-8.0
|
||||
share/webmin/dhcpd/config-suse-linux-8.2-*
|
||||
share/webmin/dhcpd/config-suse-linux-8.2-9.1
|
||||
share/webmin/dhcpd/config-suse-linux-9.2-*
|
||||
share/webmin/dhcpd/config-trustix-linux
|
||||
share/webmin/dhcpd/config-turbo-linux
|
||||
share/webmin/dhcpd/config-united-linux
|
||||
share/webmin/dhcpd/config-unixware
|
||||
share/webmin/dhcpd/config.info
|
||||
share/webmin/dhcpd/config.info.ca
|
||||
share/webmin/dhcpd/config.info.da
|
||||
share/webmin/dhcpd/config.info.de
|
||||
share/webmin/dhcpd/config.info.es
|
||||
share/webmin/dhcpd/config.info.fa
|
||||
share/webmin/dhcpd/config.info.fr
|
||||
share/webmin/dhcpd/config.info.ja_JP.UTF-8
|
||||
share/webmin/dhcpd/config.info.ja_JP.euc
|
||||
share/webmin/dhcpd/config.info.nl
|
||||
share/webmin/dhcpd/config.info.pl
|
||||
share/webmin/dhcpd/config.info.pt_BR
|
||||
share/webmin/dhcpd/config.info.ru_RU
|
||||
share/webmin/dhcpd/config.info.ru_SU
|
||||
share/webmin/dhcpd/config.info.sk
|
||||
share/webmin/dhcpd/config.info.sv
|
||||
share/webmin/dhcpd/config.info.tr
|
||||
share/webmin/dhcpd/config.info.uk_UA
|
||||
share/webmin/dhcpd/config.info.zh_CN
|
||||
share/webmin/dhcpd/config.info.zh_CN.UTF-8
|
||||
share/webmin/dhcpd/config.info.zh_TW.Big5
|
||||
share/webmin/dhcpd/config.info.zh_TW.UTF-8
|
||||
share/webmin/dhcpd/confirm_delete.cgi
|
||||
share/webmin/dhcpd/defaultacl
|
||||
share/webmin/dhcpd/delete_all.cgi
|
||||
share/webmin/dhcpd/delete_hosts.cgi
|
||||
share/webmin/dhcpd/delete_lease.cgi
|
||||
share/webmin/dhcpd/delete_subnets.cgi
|
||||
share/webmin/dhcpd/dhcpd-lib.pl
|
||||
share/webmin/dhcpd/edit_group.cgi
|
||||
share/webmin/dhcpd/edit_host.cgi
|
||||
|
@ -75,6 +84,7 @@ share/webmin/dhcpd/edit_zones.cgi
|
|||
share/webmin/dhcpd/help/acl.ca.html
|
||||
share/webmin/dhcpd/help/acl.es.html
|
||||
share/webmin/dhcpd/help/acl.html
|
||||
share/webmin/dhcpd/help/acl.ja_JP.UTF-8.html
|
||||
share/webmin/dhcpd/help/acl.ja_JP.euc.html
|
||||
share/webmin/dhcpd/help/acl.pt_BR.html
|
||||
share/webmin/dhcpd/help/acl_info.ca.html
|
||||
|
@ -97,13 +107,16 @@ share/webmin/dhcpd/images/subnet.gif
|
|||
share/webmin/dhcpd/index.cgi
|
||||
share/webmin/dhcpd/install_check.pl
|
||||
share/webmin/dhcpd/lang/ca
|
||||
share/webmin/dhcpd/lang/da
|
||||
share/webmin/dhcpd/lang/de
|
||||
share/webmin/dhcpd/lang/en
|
||||
share/webmin/dhcpd/lang/es
|
||||
share/webmin/dhcpd/lang/fa
|
||||
share/webmin/dhcpd/lang/fr
|
||||
share/webmin/dhcpd/lang/ja_JP.UTF-8
|
||||
share/webmin/dhcpd/lang/ja_JP.euc
|
||||
share/webmin/dhcpd/lang/ja_JP.jis
|
||||
share/webmin/dhcpd/lang/ko_KR.UTF-8
|
||||
share/webmin/dhcpd/lang/ko_KR.euc
|
||||
share/webmin/dhcpd/lang/nl
|
||||
share/webmin/dhcpd/lang/pl
|
||||
|
@ -111,11 +124,14 @@ share/webmin/dhcpd/lang/pt
|
|||
share/webmin/dhcpd/lang/pt_BR
|
||||
share/webmin/dhcpd/lang/ru_RU
|
||||
share/webmin/dhcpd/lang/ru_SU
|
||||
share/webmin/dhcpd/lang/sk
|
||||
share/webmin/dhcpd/lang/sv
|
||||
share/webmin/dhcpd/lang/tr
|
||||
share/webmin/dhcpd/lang/uk_UA
|
||||
share/webmin/dhcpd/lang/zh_CN
|
||||
share/webmin/dhcpd/lang/zh_CN.UTF-8
|
||||
share/webmin/dhcpd/lang/zh_TW.Big5
|
||||
share/webmin/dhcpd/lang/zh_TW.UTF-8
|
||||
share/webmin/dhcpd/list_leases.cgi
|
||||
share/webmin/dhcpd/log_parser.pl
|
||||
share/webmin/dhcpd/lookup_group.cgi
|
||||
|
@ -143,3 +159,4 @@ share/webmin/dhcpd/stop.cgi
|
|||
@dirrm share/webmin/dhcpd/help
|
||||
@dirrm share/webmin/dhcpd
|
||||
@dirrm share/examples/webmin/dhcpd
|
||||
@dirrm etc/webmin/dhcpd
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:02:22 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/dhcpd.wbm.gz) = da5ea5c2078909a9805216a08ec7912e9064e908
|
||||
RMD160 (webmin-modules-1.270/dhcpd.wbm.gz) = 8be56f88e390c6a6319e2438aed7ff19c0b88b51
|
||||
Size (webmin-modules-1.270/dhcpd.wbm.gz) = 128545 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
DISTNAME= dovecot
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= dovecot
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for configuring the Dovecot IMAP/POP3 server
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:41:09 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/dovecot.wbm.gz) = 9514c110ef9e561508e432fdef2dec4f314d196a
|
||||
RMD160 (webmin-modules-1.270/dovecot.wbm.gz) = 3b3e0948ebdc409e285546ce295a2441ea212c7e
|
||||
Size (webmin-modules-1.270/dovecot.wbm.gz) = 18934 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:00 obache Exp $
|
||||
|
||||
DISTNAME= fetchmail
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= fetchmail
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for configuring fetchmail
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:41:23 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:00 obache Exp $
|
||||
share/examples/webmin/fetchmail/config
|
||||
share/webmin/fetchmail/CHANGELOG
|
||||
share/webmin/fetchmail/acl_security.pl
|
||||
|
@ -31,6 +31,7 @@ share/webmin/fetchmail/config.info.ru_RU
|
|||
share/webmin/fetchmail/config.info.ru_SU
|
||||
share/webmin/fetchmail/config.info.uk_UA
|
||||
share/webmin/fetchmail/config.info.zh_TW.Big5
|
||||
share/webmin/fetchmail/config.info.zh_TW.UTF-8
|
||||
share/webmin/fetchmail/defaultacl
|
||||
share/webmin/fetchmail/edit_cron.cgi
|
||||
share/webmin/fetchmail/edit_global.cgi
|
||||
|
@ -50,14 +51,18 @@ share/webmin/fetchmail/lang/en
|
|||
share/webmin/fetchmail/lang/es
|
||||
share/webmin/fetchmail/lang/hu
|
||||
share/webmin/fetchmail/lang/it
|
||||
share/webmin/fetchmail/lang/ja_JP.UTF-8
|
||||
share/webmin/fetchmail/lang/ja_JP.euc
|
||||
share/webmin/fetchmail/lang/ko_KR.UTF-8
|
||||
share/webmin/fetchmail/lang/ko_KR.euc
|
||||
share/webmin/fetchmail/lang/pl
|
||||
share/webmin/fetchmail/lang/ru_RU
|
||||
share/webmin/fetchmail/lang/ru_SU
|
||||
share/webmin/fetchmail/lang/uk_UA
|
||||
share/webmin/fetchmail/lang/zh_CN
|
||||
share/webmin/fetchmail/lang/zh_CN.UTF-8
|
||||
share/webmin/fetchmail/lang/zh_TW.Big5
|
||||
share/webmin/fetchmail/lang/zh_TW.UTF-8
|
||||
share/webmin/fetchmail/log_parser.pl
|
||||
share/webmin/fetchmail/module.info
|
||||
share/webmin/fetchmail/save_cron.cgi
|
||||
|
@ -69,3 +74,4 @@ share/webmin/fetchmail/stop.cgi
|
|||
@dirrm share/webmin/fetchmail/images
|
||||
@dirrm share/webmin/fetchmail
|
||||
@dirrm share/examples/webmin/fetchmail
|
||||
@dirrm etc/webmin/fetchmail
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:41:23 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/fetchmail.wbm.gz) = 5e323e420838286b8c46c556623e94daceb90d6e
|
||||
RMD160 (webmin-modules-1.270/fetchmail.wbm.gz) = 98778c24431bf71d60176b1b5399e26236fe5827
|
||||
Size (webmin-modules-1.270/fetchmail.wbm.gz) = 36075 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
DISTNAME= file
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= file
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for managing file and directory permissions
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:02:38 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/file.wbm.gz) = cdf1e0fbc0c868cfe50334b07f5415b39d2394f4
|
||||
RMD160 (webmin-modules-1.270/file.wbm.gz) = d83ede1a16371b03505ce4e1984033e390e85566
|
||||
Size (webmin-modules-1.270/file.wbm.gz) = 451104 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 21:41:36 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
DISTNAME= htaccess-htpasswd
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= htaccess-htpasswd
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES= apache useradmin
|
||||
|
||||
DEPENDS+= wbm-apache>=1.270:../../sysutils/wbm-apache
|
||||
DEPENDS+= wbm-useradmin>=1.270:../../sysutils/wbm-useradmin
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to protect Apache web-accessible directories
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:41:36 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
share/examples/webmin/htaccess-htpasswd/config
|
||||
share/webmin/htaccess-htpasswd/CHANGELOG
|
||||
share/webmin/htaccess-htpasswd/acl_security.pl
|
||||
share/webmin/htaccess-htpasswd/config
|
||||
share/webmin/htaccess-htpasswd/config-windows
|
||||
share/webmin/htaccess-htpasswd/config.info
|
||||
share/webmin/htaccess-htpasswd/config.info.ca
|
||||
share/webmin/htaccess-htpasswd/config.info.de
|
||||
|
@ -10,8 +11,11 @@ share/webmin/htaccess-htpasswd/config.info.es
|
|||
share/webmin/htaccess-htpasswd/config.info.fr
|
||||
share/webmin/htaccess-htpasswd/config.info.hu
|
||||
share/webmin/htaccess-htpasswd/config.info.ms
|
||||
share/webmin/htaccess-htpasswd/config.info.tr
|
||||
share/webmin/htaccess-htpasswd/config.info.zh_TW.Big5
|
||||
share/webmin/htaccess-htpasswd/config.info.zh_TW.UTF-8
|
||||
share/webmin/htaccess-htpasswd/defaultacl
|
||||
share/webmin/htaccess-htpasswd/delete.cgi
|
||||
share/webmin/htaccess-htpasswd/edit_dir.cgi
|
||||
share/webmin/htaccess-htpasswd/edit_group.cgi
|
||||
share/webmin/htaccess-htpasswd/edit_user.cgi
|
||||
|
@ -27,7 +31,9 @@ share/webmin/htaccess-htpasswd/lang/es
|
|||
share/webmin/htaccess-htpasswd/lang/fr
|
||||
share/webmin/htaccess-htpasswd/lang/hu
|
||||
share/webmin/htaccess-htpasswd/lang/ms
|
||||
share/webmin/htaccess-htpasswd/lang/tr
|
||||
share/webmin/htaccess-htpasswd/lang/zh_TW.Big5
|
||||
share/webmin/htaccess-htpasswd/lang/zh_TW.UTF-8
|
||||
share/webmin/htaccess-htpasswd/log_parser.pl
|
||||
share/webmin/htaccess-htpasswd/md5-lib.pl
|
||||
share/webmin/htaccess-htpasswd/module.info
|
||||
|
@ -40,3 +46,4 @@ share/webmin/htaccess-htpasswd/useradmin_update.pl
|
|||
@dirrm share/webmin/htaccess-htpasswd/images
|
||||
@dirrm share/webmin/htaccess-htpasswd
|
||||
@dirrm share/examples/webmin/htaccess-htpasswd
|
||||
@dirrm etc/webmin/htaccess-htpasswd
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:41:36 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/htaccess-htpasswd.wbm.gz) = 6e666a96857c61a52bbc8166242495a24be3b593
|
||||
RMD160 (webmin-modules-1.270/htaccess-htpasswd.wbm.gz) = 03bded6747191da2d1b74ada83400e04c28fba6d
|
||||
Size (webmin-modules-1.270/htaccess-htpasswd.wbm.gz) = 23204 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
DISTNAME= inetd
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= inetd
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to configure inetd
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:40:45 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
share/examples/webmin/inetd/config
|
||||
share/webmin/inetd/backup_config.pl
|
||||
share/webmin/inetd/config-aix
|
||||
|
@ -16,9 +16,9 @@ share/webmin/inetd/config-macos
|
|||
share/webmin/inetd/config-macos-1.5-*
|
||||
share/webmin/inetd/config-mandrake-linux
|
||||
share/webmin/inetd/config-msc-linux
|
||||
share/webmin/inetd/config-netbsd
|
||||
share/webmin/inetd/config-${LOWER_OPSYS}
|
||||
share/webmin/inetd/config-open-linux
|
||||
share/webmin/inetd/config-open-linux-3.1e
|
||||
share/webmin/inetd/config-open-linux-${OS_VERSION}e
|
||||
share/webmin/inetd/config-openbsd
|
||||
share/webmin/inetd/config-openserver
|
||||
share/webmin/inetd/config-osf1
|
||||
|
@ -47,7 +47,9 @@ share/webmin/inetd/config.info.sv
|
|||
share/webmin/inetd/config.info.tr
|
||||
share/webmin/inetd/config.info.uk_UA
|
||||
share/webmin/inetd/config.info.zh_CN
|
||||
share/webmin/inetd/config.info.zh_CN.UTF-8
|
||||
share/webmin/inetd/config.info.zh_TW.Big5
|
||||
share/webmin/inetd/config.info.zh_TW.UTF-8
|
||||
share/webmin/inetd/delete_rpc.cgi
|
||||
share/webmin/inetd/delete_serv.cgi
|
||||
share/webmin/inetd/edit_rpc.cgi
|
||||
|
@ -57,6 +59,7 @@ share/webmin/inetd/help/help.es.html
|
|||
share/webmin/inetd/help/help.html
|
||||
share/webmin/inetd/help/help.sv.html
|
||||
share/webmin/inetd/help/help.zh_TW.Big5.html
|
||||
share/webmin/inetd/help/help.zh_TW.UTF-8.html
|
||||
share/webmin/inetd/images/icon.gif
|
||||
share/webmin/inetd/images/smallicon.gif
|
||||
share/webmin/inetd/index.cgi
|
||||
|
@ -71,13 +74,17 @@ share/webmin/inetd/lang/es
|
|||
share/webmin/inetd/lang/fr
|
||||
share/webmin/inetd/lang/hu
|
||||
share/webmin/inetd/lang/it
|
||||
share/webmin/inetd/lang/ja_JP.UTF-8
|
||||
share/webmin/inetd/lang/ja_JP.euc
|
||||
share/webmin/inetd/lang/ko_KR.UTF-8
|
||||
share/webmin/inetd/lang/ko_KR.euc
|
||||
share/webmin/inetd/lang/pl
|
||||
share/webmin/inetd/lang/sv
|
||||
share/webmin/inetd/lang/tr
|
||||
share/webmin/inetd/lang/zh_CN
|
||||
share/webmin/inetd/lang/zh_CN.UTF-8
|
||||
share/webmin/inetd/lang/zh_TW.Big5
|
||||
share/webmin/inetd/lang/zh_TW.UTF-8
|
||||
share/webmin/inetd/log_parser.pl
|
||||
share/webmin/inetd/module.info
|
||||
share/webmin/inetd/restart_inetd.cgi
|
||||
|
@ -88,3 +95,4 @@ share/webmin/inetd/save_serv.cgi
|
|||
@dirrm share/webmin/inetd/help
|
||||
@dirrm share/webmin/inetd
|
||||
@dirrm share/examples/webmin/inetd
|
||||
@dirrm etc/webmin/inetd
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:40:45 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/inetd.wbm.gz) = 2b088973cfd28d74b33adb24d2eade38aaedab28
|
||||
RMD160 (webmin-modules-1.270/inetd.wbm.gz) = 440020c47bb340c9f056986f3a01d23e4d1667de
|
||||
Size (webmin-modules-1.270/inetd.wbm.gz) = 46151 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,13 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 04:02:54 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
DISTNAME= ipfilter
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= ipfilter
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES+= net
|
||||
|
||||
DEPENDS+= wbm-net>=1.270:../../sysutils/wbm-net
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for IPFilter configuration
|
||||
|
||||
post-extract:
|
||||
cp ${FILESDIR}/ipfilter_config-netbsd ${WRKSRC}/${WBM_NAME}/config-netbsd
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:02:54 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:01 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/ipfilter.wbm.gz) = e27404097e32d33ba6288f19e60aea829c62f175
|
||||
RMD160 (webmin-modules-1.270/ipfilter.wbm.gz) = d6d0ecc74eaea5e4580b98125d25b9d3af5680ec
|
||||
Size (webmin-modules-1.270/ipfilter.wbm.gz) = 34633 bytes
|
||||
SHA1 (patch-aa) = 7fd8f42669f1937025a51e7c2698d16f11af5963
|
||||
SHA1 (patch-ab) = b8a6e1d5f1b4efbebc483dafb528711f19fddc1c
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
SHA1 (patch-ab) = ed1c9912349fd071bb560c2b695e3197c404ac0e
|
||||
|
|
9
sysutils/wbm-ipfilter/files/ipfilter_config-netbsd
Normal file
9
sysutils/wbm-ipfilter/files/ipfilter_config-netbsd
Normal file
|
@ -0,0 +1,9 @@
|
|||
ipf_conf=/etc/ipf.conf
|
||||
ipnat_conf=/etc/ipnat.conf
|
||||
view_condition=1
|
||||
view_comment=0
|
||||
ipf=/sbin/ipf
|
||||
ipfstat=/usr/sbin/ipfstat
|
||||
cluster_mode=0
|
||||
ipnat=/usr/sbin/ipnat
|
||||
cluster_nat=1
|
|
@ -1,14 +0,0 @@
|
|||
$NetBSD: patch-aa,v 1.1.1.1 2006/05/16 04:02:54 jlam Exp $
|
||||
|
||||
--- /dev/null Tue May 16 02:15:03 2006
|
||||
+++ config-netbsd
|
||||
@@ -0,0 +1,9 @@
|
||||
+ipf_conf=/etc/ipf.conf
|
||||
+ipnat_conf=/etc/ipnat.conf
|
||||
+view_condition=1
|
||||
+view_comment=0
|
||||
+ipf=/sbin/ipf
|
||||
+ipfstat=/usr/sbin/ipfstat
|
||||
+cluster_mode=0
|
||||
+ipnat=/usr/sbin/ipnat
|
||||
+cluster_nat=1
|
|
@ -1,13 +1,13 @@
|
|||
$NetBSD: patch-ab,v 1.1.1.1 2006/05/16 04:02:54 jlam Exp $
|
||||
$NetBSD: patch-ab,v 1.2 2007/04/21 05:23:02 obache Exp $
|
||||
|
||||
--- module.info.orig Tue Apr 4 23:16:16 2006
|
||||
+++ module.info
|
||||
--- ipfilter/module.info.orig 2007-04-09 05:00:48.000000000 +0000
|
||||
+++ ipfilter/module.info
|
||||
@@ -1,7 +1,7 @@
|
||||
category=net
|
||||
longdesc=Configure a firewall using the IPFilter package, by creating and editing rules.
|
||||
depends=net 1.270
|
||||
depends=net 1.340
|
||||
-os_support=solaris {&has_command("ipf")}
|
||||
+os_support=netbsd solaris {&has_command("ipf")}
|
||||
desc=IPFilter Firewall
|
||||
version=1.270
|
||||
version=1.340
|
||||
desc_ca=Tallafocs IPFIlter
|
||||
|
|
|
@ -1,15 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 15:41:06 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:23:02 obache Exp $
|
||||
|
||||
DISTNAME= ldap-useradmin
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= ldap-useradmin
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES+= useradmin
|
||||
|
||||
DEPENDS+= wbm-useradmin>=1.270:../../sysutils/wbm-useradmin
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to manage users and groups stored in LDAP
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:41:06 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:02 obache Exp $
|
||||
share/examples/webmin/ldap-useradmin/config
|
||||
share/webmin/ldap-useradmin/CHANGELOG
|
||||
share/webmin/ldap-useradmin/acl_security.pl
|
||||
|
@ -21,6 +21,7 @@ share/webmin/ldap-useradmin/config.info
|
|||
share/webmin/ldap-useradmin/config.info.ca
|
||||
share/webmin/ldap-useradmin/config.info.de
|
||||
share/webmin/ldap-useradmin/config.info.es
|
||||
share/webmin/ldap-useradmin/cpan_modules.pl
|
||||
share/webmin/ldap-useradmin/defaultacl
|
||||
share/webmin/ldap-useradmin/edit_group.cgi
|
||||
share/webmin/ldap-useradmin/edit_user.cgi
|
||||
|
@ -46,6 +47,7 @@ share/webmin/ldap-useradmin/log_parser.pl
|
|||
share/webmin/ldap-useradmin/mass_delete_group.cgi
|
||||
share/webmin/ldap-useradmin/mass_delete_user.cgi
|
||||
share/webmin/ldap-useradmin/module.info
|
||||
share/webmin/ldap-useradmin/postinstall.pl
|
||||
share/webmin/ldap-useradmin/raw.cgi
|
||||
share/webmin/ldap-useradmin/save_group.cgi
|
||||
share/webmin/ldap-useradmin/save_user.cgi
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:41:06 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:02 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/ldap-useradmin.wbm.gz) = 918589fafb260eeb651b494cdeb479910cbd4132
|
||||
RMD160 (webmin-modules-1.270/ldap-useradmin.wbm.gz) = bfb54aa7496ebc3e1802896a2f121f053cb7f3b6
|
||||
Size (webmin-modules-1.270/ldap-useradmin.wbm.gz) = 48694 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:02 obache Exp $
|
||||
|
||||
DISTNAME= lpadmin
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= lpadmin
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to manage local and remote printers
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:41:24 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:02 obache Exp $
|
||||
share/examples/webmin/lpadmin/config
|
||||
share/webmin/lpadmin/CHANGELOG
|
||||
share/webmin/lpadmin/acl_security.pl
|
||||
|
@ -20,6 +20,7 @@ share/webmin/lpadmin/config-aix
|
|||
share/webmin/lpadmin/config-coherent-linux
|
||||
share/webmin/lpadmin/config-corel-linux
|
||||
share/webmin/lpadmin/config-debian-linux
|
||||
share/webmin/lpadmin/config-debian-linux-3.1-*
|
||||
share/webmin/lpadmin/config-freebsd
|
||||
share/webmin/lpadmin/config-generic-linux
|
||||
share/webmin/lpadmin/config-gentoo-linux
|
||||
|
@ -55,6 +56,7 @@ share/webmin/lpadmin/config.info.de
|
|||
share/webmin/lpadmin/config.info.es
|
||||
share/webmin/lpadmin/config.info.fr
|
||||
share/webmin/lpadmin/config.info.hu
|
||||
share/webmin/lpadmin/config.info.ja_JP.UTF-8
|
||||
share/webmin/lpadmin/config.info.ja_JP.euc
|
||||
share/webmin/lpadmin/config.info.nl
|
||||
share/webmin/lpadmin/config.info.pl
|
||||
|
@ -64,11 +66,14 @@ share/webmin/lpadmin/config.info.sv
|
|||
share/webmin/lpadmin/config.info.tr
|
||||
share/webmin/lpadmin/config.info.uk_UA
|
||||
share/webmin/lpadmin/config.info.zh_CN
|
||||
share/webmin/lpadmin/config.info.zh_CN.UTF-8
|
||||
share/webmin/lpadmin/config.info.zh_TW.Big5
|
||||
share/webmin/lpadmin/config.info.zh_TW.UTF-8
|
||||
share/webmin/lpadmin/cups-driver.pl
|
||||
share/webmin/lpadmin/cups-lib.pl
|
||||
share/webmin/lpadmin/defaultacl
|
||||
share/webmin/lpadmin/delete_printer.cgi
|
||||
share/webmin/lpadmin/delete_printers.cgi
|
||||
share/webmin/lpadmin/drivers
|
||||
share/webmin/lpadmin/edit_printer.cgi
|
||||
share/webmin/lpadmin/freebsd-lib.pl
|
||||
|
@ -86,7 +91,9 @@ share/webmin/lpadmin/lang/es
|
|||
share/webmin/lpadmin/lang/fr
|
||||
share/webmin/lpadmin/lang/hu
|
||||
share/webmin/lpadmin/lang/it
|
||||
share/webmin/lpadmin/lang/ja_JP.UTF-8
|
||||
share/webmin/lpadmin/lang/ja_JP.euc
|
||||
share/webmin/lpadmin/lang/ko_KR.UTF-8
|
||||
share/webmin/lpadmin/lang/ko_KR.euc
|
||||
share/webmin/lpadmin/lang/nl
|
||||
share/webmin/lpadmin/lang/pl
|
||||
|
@ -98,7 +105,9 @@ share/webmin/lpadmin/lang/sv
|
|||
share/webmin/lpadmin/lang/tr
|
||||
share/webmin/lpadmin/lang/uk_UA
|
||||
share/webmin/lpadmin/lang/zh_CN
|
||||
share/webmin/lpadmin/lang/zh_CN.UTF-8
|
||||
share/webmin/lpadmin/lang/zh_TW.Big5
|
||||
share/webmin/lpadmin/lang/zh_TW.UTF-8
|
||||
share/webmin/lpadmin/linux-lib.pl
|
||||
share/webmin/lpadmin/list_jobs.cgi
|
||||
share/webmin/lpadmin/log_parser.pl
|
||||
|
@ -129,3 +138,4 @@ share/webmin/lpadmin/webmin-driver.pl
|
|||
@dirrm share/webmin/lpadmin/images
|
||||
@dirrm share/webmin/lpadmin
|
||||
@dirrm share/examples/webmin/lpadmin
|
||||
@dirrm etc/webmin/lpadmin
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:41:24 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:02 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/lpadmin.wbm.gz) = 0e6de3ea0251c37f842cb995e3aaf7111ad9955c
|
||||
RMD160 (webmin-modules-1.270/lpadmin.wbm.gz) = c7f73e353b939327dd16060e1bc6856bf952f229
|
||||
Size (webmin-modules-1.270/lpadmin.wbm.gz) = 127502 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:02 obache Exp $
|
||||
|
||||
DISTNAME= mailboxes
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= mailboxes
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to read email in users' mailboxes
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:41:41 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/mailboxes.wbm.gz) = bde67ad88f8f360ca2947b52935752fb5129ac52
|
||||
RMD160 (webmin-modules-1.270/mailboxes.wbm.gz) = a2c6872c984909ed4f58f1ab01fa7f7dffc5d755
|
||||
Size (webmin-modules-1.270/mailboxes.wbm.gz) = 155874 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
DISTNAME= mount
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= mount
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to mount filesystems
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:41:56 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
share/examples/webmin/mount/config
|
||||
share/webmin/mount/CHANGELOG
|
||||
share/webmin/mount/acl_security.pl
|
||||
|
@ -46,7 +46,9 @@ share/webmin/mount/config.info.sv
|
|||
share/webmin/mount/config.info.tr
|
||||
share/webmin/mount/config.info.uk_UA
|
||||
share/webmin/mount/config.info.zh_CN
|
||||
share/webmin/mount/config.info.zh_CN.UTF-8
|
||||
share/webmin/mount/config.info.zh_TW.Big5
|
||||
share/webmin/mount/config.info.zh_TW.UTF-8
|
||||
share/webmin/mount/create_swap.cgi
|
||||
share/webmin/mount/defaultacl
|
||||
share/webmin/mount/edit_mount.cgi
|
||||
|
@ -60,6 +62,7 @@ share/webmin/mount/freebsd-mounts-4.c
|
|||
share/webmin/mount/freebsd-mounts-5
|
||||
share/webmin/mount/freebsd-mounts-5.c
|
||||
share/webmin/mount/help/edit_dir.ca.html
|
||||
share/webmin/mount/help/edit_dir.fa.html
|
||||
share/webmin/mount/help/edit_dir.fr.html
|
||||
share/webmin/mount/help/edit_dir.html
|
||||
share/webmin/mount/help/help.ca.html
|
||||
|
@ -67,64 +70,82 @@ share/webmin/mount/help/help.es.html
|
|||
share/webmin/mount/help/help.html
|
||||
share/webmin/mount/help/help.sv.html
|
||||
share/webmin/mount/help/help.zh_TW.Big5.html
|
||||
share/webmin/mount/help/help.zh_TW.UTF-8.html
|
||||
share/webmin/mount/help/linux_auth.ca.html
|
||||
share/webmin/mount/help/linux_auth.fr.html
|
||||
share/webmin/mount/help/linux_auth.html
|
||||
share/webmin/mount/help/linux_bg.ca.html
|
||||
share/webmin/mount/help/linux_bg.fa.html
|
||||
share/webmin/mount/help/linux_bg.fr.html
|
||||
share/webmin/mount/help/linux_bg.html
|
||||
share/webmin/mount/help/linux_intr.ca.html
|
||||
share/webmin/mount/help/linux_intr.fr.html
|
||||
share/webmin/mount/help/linux_intr.html
|
||||
share/webmin/mount/help/linux_nodev.ca.html
|
||||
share/webmin/mount/help/linux_nodev.fa.html
|
||||
share/webmin/mount/help/linux_nodev.fr.html
|
||||
share/webmin/mount/help/linux_nodev.html
|
||||
share/webmin/mount/help/linux_noexec.ca.html
|
||||
share/webmin/mount/help/linux_noexec.fa.html
|
||||
share/webmin/mount/help/linux_noexec.fr.html
|
||||
share/webmin/mount/help/linux_noexec.html
|
||||
share/webmin/mount/help/linux_nosuid.ca.html
|
||||
share/webmin/mount/help/linux_nosuid.fa.html
|
||||
share/webmin/mount/help/linux_nosuid.fr.html
|
||||
share/webmin/mount/help/linux_nosuid.html
|
||||
share/webmin/mount/help/linux_port.ca.html
|
||||
share/webmin/mount/help/linux_port.fa.html
|
||||
share/webmin/mount/help/linux_port.fr.html
|
||||
share/webmin/mount/help/linux_port.html
|
||||
share/webmin/mount/help/linux_retrans.ca.html
|
||||
share/webmin/mount/help/linux_retrans.fa.html
|
||||
share/webmin/mount/help/linux_retrans.fr.html
|
||||
share/webmin/mount/help/linux_retrans.html
|
||||
share/webmin/mount/help/linux_ro.ca.html
|
||||
share/webmin/mount/help/linux_ro.fa.html
|
||||
share/webmin/mount/help/linux_ro.fr.html
|
||||
share/webmin/mount/help/linux_ro.html
|
||||
share/webmin/mount/help/linux_rsize.ca.html
|
||||
share/webmin/mount/help/linux_rsize.fr.html
|
||||
share/webmin/mount/help/linux_rsize.html
|
||||
share/webmin/mount/help/linux_sec.ca.html
|
||||
share/webmin/mount/help/linux_sec.fa.html
|
||||
share/webmin/mount/help/linux_sec.fr.html
|
||||
share/webmin/mount/help/linux_sec.html
|
||||
share/webmin/mount/help/linux_soft.ca.html
|
||||
share/webmin/mount/help/linux_soft.fa.html
|
||||
share/webmin/mount/help/linux_soft.fr.html
|
||||
share/webmin/mount/help/linux_soft.html
|
||||
share/webmin/mount/help/linux_sync.ca.html
|
||||
share/webmin/mount/help/linux_sync.fa.html
|
||||
share/webmin/mount/help/linux_sync.fr.html
|
||||
share/webmin/mount/help/linux_sync.html
|
||||
share/webmin/mount/help/linux_timeo.ca.html
|
||||
share/webmin/mount/help/linux_timeo.fa.html
|
||||
share/webmin/mount/help/linux_timeo.fr.html
|
||||
share/webmin/mount/help/linux_timeo.html
|
||||
share/webmin/mount/help/linux_transfert.ca.html
|
||||
share/webmin/mount/help/linux_transfert.fa.html
|
||||
share/webmin/mount/help/linux_transfert.fr.html
|
||||
share/webmin/mount/help/linux_transfert.html
|
||||
share/webmin/mount/help/linux_user.ca.html
|
||||
share/webmin/mount/help/linux_user.fa.html
|
||||
share/webmin/mount/help/linux_user.fr.html
|
||||
share/webmin/mount/help/linux_user.html
|
||||
share/webmin/mount/help/linux_vers.ca.html
|
||||
share/webmin/mount/help/linux_vers.fa.html
|
||||
share/webmin/mount/help/linux_vers.fr.html
|
||||
share/webmin/mount/help/linux_vers.html
|
||||
share/webmin/mount/help/linux_wsize.ca.html
|
||||
share/webmin/mount/help/linux_wsize.fa.html
|
||||
share/webmin/mount/help/linux_wsize.fr.html
|
||||
share/webmin/mount/help/linux_wsize.html
|
||||
share/webmin/mount/help/nfsdir.ca.html
|
||||
share/webmin/mount/help/nfsdir.fa.html
|
||||
share/webmin/mount/help/nfsdir.fr.html
|
||||
share/webmin/mount/help/nfsdir.html
|
||||
share/webmin/mount/help/nfshost.ca.html
|
||||
share/webmin/mount/help/nfshost.fa.html
|
||||
share/webmin/mount/help/nfshost.fr.html
|
||||
share/webmin/mount/help/nfshost.html
|
||||
share/webmin/mount/hpux-lib.pl
|
||||
|
@ -166,7 +187,9 @@ share/webmin/mount/lang/fa
|
|||
share/webmin/mount/lang/fr
|
||||
share/webmin/mount/lang/hu
|
||||
share/webmin/mount/lang/it
|
||||
share/webmin/mount/lang/ja_JP.UTF-8
|
||||
share/webmin/mount/lang/ja_JP.euc
|
||||
share/webmin/mount/lang/ko_KR.UTF-8
|
||||
share/webmin/mount/lang/ko_KR.euc
|
||||
share/webmin/mount/lang/pl
|
||||
share/webmin/mount/lang/ru_RU
|
||||
|
@ -175,12 +198,16 @@ share/webmin/mount/lang/sv
|
|||
share/webmin/mount/lang/tr
|
||||
share/webmin/mount/lang/uk_UA
|
||||
share/webmin/mount/lang/zh_CN
|
||||
share/webmin/mount/lang/zh_CN.UTF-8
|
||||
share/webmin/mount/lang/zh_TW.Big5
|
||||
share/webmin/mount/lang/zh_TW.UTF-8
|
||||
share/webmin/mount/linux-lib.pl
|
||||
share/webmin/mount/log_parser.pl
|
||||
share/webmin/mount/low.skill
|
||||
share/webmin/mount/macos-lib.pl
|
||||
share/webmin/mount/macos-mounts
|
||||
share/webmin/mount/macos-mounts-intel
|
||||
share/webmin/mount/macos-mounts-intel.c
|
||||
share/webmin/mount/macos-mounts.c
|
||||
share/webmin/mount/medium.skill
|
||||
share/webmin/mount/module.info
|
||||
|
@ -197,6 +224,7 @@ share/webmin/mount/openbsd-mounts-2
|
|||
share/webmin/mount/openbsd-mounts-2.c
|
||||
share/webmin/mount/openbsd-mounts-3
|
||||
share/webmin/mount/openbsd-mounts-3.c
|
||||
share/webmin/mount/openbsd-mounts-4.c
|
||||
share/webmin/mount/osf1-lib.pl
|
||||
share/webmin/mount/rbac-mapping
|
||||
share/webmin/mount/save_mount.cgi
|
||||
|
@ -210,3 +238,4 @@ share/webmin/mount/unmount.cgi
|
|||
@dirrm share/webmin/mount/help
|
||||
@dirrm share/webmin/mount
|
||||
@dirrm share/examples/webmin/mount
|
||||
@dirrm etc/webmin/mount
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:41:56 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/mount.wbm.gz) = 46b025609832fd4324a05e45cbd4a5233c9db79c
|
||||
RMD160 (webmin-modules-1.270/mount.wbm.gz) = 5e3c9d25281939bed2f29dd93e538df8c55e23d6
|
||||
Size (webmin-modules-1.270/mount.wbm.gz) = 273576 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
DISTNAME= mysql
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= mysql
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for managing MySQL databases
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:42:12 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
share/examples/webmin/mysql/config
|
||||
share/webmin/mysql/CHANGELOG
|
||||
share/webmin/mysql/acl_security.pl
|
||||
|
@ -36,6 +36,7 @@ share/webmin/mysql/config.info.cz
|
|||
share/webmin/mysql/config.info.de
|
||||
share/webmin/mysql/config.info.es
|
||||
share/webmin/mysql/config.info.hu
|
||||
share/webmin/mysql/config.info.ja_JP.UTF-8
|
||||
share/webmin/mysql/config.info.ja_JP.euc
|
||||
share/webmin/mysql/config.info.pl
|
||||
share/webmin/mysql/config.info.ru_RU
|
||||
|
@ -44,13 +45,17 @@ share/webmin/mysql/config.info.sv
|
|||
share/webmin/mysql/config.info.tr
|
||||
share/webmin/mysql/config.info.uk_UA
|
||||
share/webmin/mysql/config.info.zh_CN
|
||||
share/webmin/mysql/config.info.zh_CN.UTF-8
|
||||
share/webmin/mysql/config.info.zh_TW.Big5
|
||||
share/webmin/mysql/config.info.zh_TW.UTF-8
|
||||
share/webmin/mysql/cpan_modules.pl
|
||||
share/webmin/mysql/create_table.cgi
|
||||
share/webmin/mysql/csv.cgi
|
||||
share/webmin/mysql/csv_form.cgi
|
||||
share/webmin/mysql/defaultacl
|
||||
share/webmin/mysql/delete_cprivs.cgi
|
||||
share/webmin/mysql/delete_dbs.cgi
|
||||
share/webmin/mysql/delete_fields.cgi
|
||||
share/webmin/mysql/delete_hosts.cgi
|
||||
share/webmin/mysql/delete_tprivs.cgi
|
||||
share/webmin/mysql/delete_users.cgi
|
||||
|
@ -69,6 +74,7 @@ share/webmin/mysql/edit_index.cgi
|
|||
share/webmin/mysql/edit_table.cgi
|
||||
share/webmin/mysql/edit_tpriv.cgi
|
||||
share/webmin/mysql/edit_user.cgi
|
||||
share/webmin/mysql/edit_view.cgi
|
||||
share/webmin/mysql/exec.cgi
|
||||
share/webmin/mysql/exec_file.cgi
|
||||
share/webmin/mysql/exec_form.cgi
|
||||
|
@ -84,42 +90,49 @@ share/webmin/mysql/help/cpriv.html
|
|||
share/webmin/mysql/help/cpriv.hu.html
|
||||
share/webmin/mysql/help/cpriv.sv.html
|
||||
share/webmin/mysql/help/cpriv.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/cpriv.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/cprivs.ca.html
|
||||
share/webmin/mysql/help/cprivs.es.html
|
||||
share/webmin/mysql/help/cprivs.html
|
||||
share/webmin/mysql/help/cprivs.hu.html
|
||||
share/webmin/mysql/help/cprivs.sv.html
|
||||
share/webmin/mysql/help/cprivs.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/cprivs.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/create_cpriv.ca.html
|
||||
share/webmin/mysql/help/create_cpriv.es.html
|
||||
share/webmin/mysql/help/create_cpriv.html
|
||||
share/webmin/mysql/help/create_cpriv.hu.html
|
||||
share/webmin/mysql/help/create_cpriv.sv.html
|
||||
share/webmin/mysql/help/create_cpriv.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/create_cpriv.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/create_db.ca.html
|
||||
share/webmin/mysql/help/create_db.es.html
|
||||
share/webmin/mysql/help/create_db.html
|
||||
share/webmin/mysql/help/create_db.hu.html
|
||||
share/webmin/mysql/help/create_db.sv.html
|
||||
share/webmin/mysql/help/create_db.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/create_db.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/create_field.ca.html
|
||||
share/webmin/mysql/help/create_field.es.html
|
||||
share/webmin/mysql/help/create_field.html
|
||||
share/webmin/mysql/help/create_field.hu.html
|
||||
share/webmin/mysql/help/create_field.sv.html
|
||||
share/webmin/mysql/help/create_field.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/create_field.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/create_tpriv.ca.html
|
||||
share/webmin/mysql/help/create_tpriv.es.html
|
||||
share/webmin/mysql/help/create_tpriv.html
|
||||
share/webmin/mysql/help/create_tpriv.hu.html
|
||||
share/webmin/mysql/help/create_tpriv.sv.html
|
||||
share/webmin/mysql/help/create_tpriv.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/create_tpriv.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/create_user.ca.html
|
||||
share/webmin/mysql/help/create_user.es.html
|
||||
share/webmin/mysql/help/create_user.html
|
||||
share/webmin/mysql/help/create_user.hu.html
|
||||
share/webmin/mysql/help/create_user.sv.html
|
||||
share/webmin/mysql/help/create_user.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/create_user.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/csv.ca.html
|
||||
share/webmin/mysql/help/csv.html
|
||||
share/webmin/mysql/help/db.ca.html
|
||||
|
@ -128,108 +141,130 @@ share/webmin/mysql/help/db.html
|
|||
share/webmin/mysql/help/db.hu.html
|
||||
share/webmin/mysql/help/db.sv.html
|
||||
share/webmin/mysql/help/db.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/db.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/dbs.ca.html
|
||||
share/webmin/mysql/help/dbs.es.html
|
||||
share/webmin/mysql/help/dbs.html
|
||||
share/webmin/mysql/help/dbs.hu.html
|
||||
share/webmin/mysql/help/dbs.sv.html
|
||||
share/webmin/mysql/help/dbs.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/dbs.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_cpriv.ca.html
|
||||
share/webmin/mysql/help/edit_cpriv.es.html
|
||||
share/webmin/mysql/help/edit_cpriv.html
|
||||
share/webmin/mysql/help/edit_cpriv.hu.html
|
||||
share/webmin/mysql/help/edit_cpriv.sv.html
|
||||
share/webmin/mysql/help/edit_cpriv.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_cpriv.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_db.ca.html
|
||||
share/webmin/mysql/help/edit_db.es.html
|
||||
share/webmin/mysql/help/edit_db.html
|
||||
share/webmin/mysql/help/edit_db.hu.html
|
||||
share/webmin/mysql/help/edit_db.sv.html
|
||||
share/webmin/mysql/help/edit_db.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_db.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_dbase.ca.html
|
||||
share/webmin/mysql/help/edit_dbase.es.html
|
||||
share/webmin/mysql/help/edit_dbase.html
|
||||
share/webmin/mysql/help/edit_dbase.hu.html
|
||||
share/webmin/mysql/help/edit_dbase.sv.html
|
||||
share/webmin/mysql/help/edit_dbase.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_dbase.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_field.ca.html
|
||||
share/webmin/mysql/help/edit_field.es.html
|
||||
share/webmin/mysql/help/edit_field.html
|
||||
share/webmin/mysql/help/edit_field.hu.html
|
||||
share/webmin/mysql/help/edit_field.sv.html
|
||||
share/webmin/mysql/help/edit_field.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_field.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_table.ca.html
|
||||
share/webmin/mysql/help/edit_table.es.html
|
||||
share/webmin/mysql/help/edit_table.html
|
||||
share/webmin/mysql/help/edit_table.hu.html
|
||||
share/webmin/mysql/help/edit_table.sv.html
|
||||
share/webmin/mysql/help/edit_table.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_table.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_tpriv.ca.html
|
||||
share/webmin/mysql/help/edit_tpriv.es.html
|
||||
share/webmin/mysql/help/edit_tpriv.html
|
||||
share/webmin/mysql/help/edit_tpriv.hu.html
|
||||
share/webmin/mysql/help/edit_tpriv.sv.html
|
||||
share/webmin/mysql/help/edit_tpriv.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_tpriv.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/edit_user.ca.html
|
||||
share/webmin/mysql/help/edit_user.es.html
|
||||
share/webmin/mysql/help/edit_user.html
|
||||
share/webmin/mysql/help/edit_user.hu.html
|
||||
share/webmin/mysql/help/edit_user.sv.html
|
||||
share/webmin/mysql/help/edit_user.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/edit_user.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/exec_form.ca.html
|
||||
share/webmin/mysql/help/exec_form.es.html
|
||||
share/webmin/mysql/help/exec_form.html
|
||||
share/webmin/mysql/help/exec_form.hu.html
|
||||
share/webmin/mysql/help/exec_form.sv.html
|
||||
share/webmin/mysql/help/exec_form.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/exec_form.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/field.ca.html
|
||||
share/webmin/mysql/help/field.es.html
|
||||
share/webmin/mysql/help/field.html
|
||||
share/webmin/mysql/help/field.hu.html
|
||||
share/webmin/mysql/help/field.sv.html
|
||||
share/webmin/mysql/help/field.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/field.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/intro.ca.html
|
||||
share/webmin/mysql/help/intro.es.html
|
||||
share/webmin/mysql/help/intro.html
|
||||
share/webmin/mysql/help/intro.hu.html
|
||||
share/webmin/mysql/help/intro.sv.html
|
||||
share/webmin/mysql/help/intro.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/intro.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/newdb_form.ca.html
|
||||
share/webmin/mysql/help/newdb_form.es.html
|
||||
share/webmin/mysql/help/newdb_form.html
|
||||
share/webmin/mysql/help/newdb_form.hu.html
|
||||
share/webmin/mysql/help/newdb_form.sv.html
|
||||
share/webmin/mysql/help/newdb_form.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/newdb_form.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/procs.ca.html
|
||||
share/webmin/mysql/help/procs.html
|
||||
share/webmin/mysql/help/table_form.ca.html
|
||||
share/webmin/mysql/help/table_form.es.html
|
||||
share/webmin/mysql/help/table_form.html
|
||||
share/webmin/mysql/help/table_form.hu.html
|
||||
share/webmin/mysql/help/table_form.sv.html
|
||||
share/webmin/mysql/help/table_form.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/table_form.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/tpriv.ca.html
|
||||
share/webmin/mysql/help/tpriv.es.html
|
||||
share/webmin/mysql/help/tpriv.html
|
||||
share/webmin/mysql/help/tpriv.hu.html
|
||||
share/webmin/mysql/help/tpriv.sv.html
|
||||
share/webmin/mysql/help/tpriv.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/tpriv.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/tprivs.ca.html
|
||||
share/webmin/mysql/help/tprivs.es.html
|
||||
share/webmin/mysql/help/tprivs.html
|
||||
share/webmin/mysql/help/tprivs.hu.html
|
||||
share/webmin/mysql/help/tprivs.sv.html
|
||||
share/webmin/mysql/help/tprivs.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/tprivs.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/user.ca.html
|
||||
share/webmin/mysql/help/user.es.html
|
||||
share/webmin/mysql/help/user.html
|
||||
share/webmin/mysql/help/user.hu.html
|
||||
share/webmin/mysql/help/user.sv.html
|
||||
share/webmin/mysql/help/user.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/user.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/users.ca.html
|
||||
share/webmin/mysql/help/users.es.html
|
||||
share/webmin/mysql/help/users.html
|
||||
share/webmin/mysql/help/users.hu.html
|
||||
share/webmin/mysql/help/users.sv.html
|
||||
share/webmin/mysql/help/users.zh_TW.Big5.html
|
||||
share/webmin/mysql/help/users.zh_TW.UTF-8.html
|
||||
share/webmin/mysql/help/vars.ca.html
|
||||
share/webmin/mysql/help/vars.html
|
||||
share/webmin/mysql/images/cnf.gif
|
||||
share/webmin/mysql/images/cprivs.gif
|
||||
share/webmin/mysql/images/db.gif
|
||||
|
@ -240,13 +275,17 @@ share/webmin/mysql/images/hosts.gif
|
|||
share/webmin/mysql/images/icon.gif
|
||||
share/webmin/mysql/images/index.gif
|
||||
share/webmin/mysql/images/mysql.gif
|
||||
share/webmin/mysql/images/procs.gif
|
||||
share/webmin/mysql/images/smallicon.gif
|
||||
share/webmin/mysql/images/table.gif
|
||||
share/webmin/mysql/images/tprivs.gif
|
||||
share/webmin/mysql/images/users.gif
|
||||
share/webmin/mysql/images/vars.gif
|
||||
share/webmin/mysql/images/view.gif
|
||||
share/webmin/mysql/import.cgi
|
||||
share/webmin/mysql/index.cgi
|
||||
share/webmin/mysql/install_check.pl
|
||||
share/webmin/mysql/kill_procs.cgi
|
||||
share/webmin/mysql/lang/bg
|
||||
share/webmin/mysql/lang/ca
|
||||
share/webmin/mysql/lang/cz
|
||||
|
@ -256,7 +295,9 @@ share/webmin/mysql/lang/es
|
|||
share/webmin/mysql/lang/he
|
||||
share/webmin/mysql/lang/hu
|
||||
share/webmin/mysql/lang/it
|
||||
share/webmin/mysql/lang/ja_JP.UTF-8
|
||||
share/webmin/mysql/lang/ja_JP.euc
|
||||
share/webmin/mysql/lang/ko_KR.UTF-8
|
||||
share/webmin/mysql/lang/ko_KR.euc
|
||||
share/webmin/mysql/lang/pl
|
||||
share/webmin/mysql/lang/ru_RU
|
||||
|
@ -265,12 +306,16 @@ share/webmin/mysql/lang/sv
|
|||
share/webmin/mysql/lang/tr
|
||||
share/webmin/mysql/lang/uk_UA
|
||||
share/webmin/mysql/lang/zh_CN
|
||||
share/webmin/mysql/lang/zh_CN.UTF-8
|
||||
share/webmin/mysql/lang/zh_TW.Big5
|
||||
share/webmin/mysql/lang/zh_TW.UTF-8
|
||||
share/webmin/mysql/list_cprivs.cgi
|
||||
share/webmin/mysql/list_dbs.cgi
|
||||
share/webmin/mysql/list_hosts.cgi
|
||||
share/webmin/mysql/list_procs.cgi
|
||||
share/webmin/mysql/list_tprivs.cgi
|
||||
share/webmin/mysql/list_users.cgi
|
||||
share/webmin/mysql/list_vars.cgi
|
||||
share/webmin/mysql/log_parser.pl
|
||||
share/webmin/mysql/login.cgi
|
||||
share/webmin/mysql/module.info
|
||||
|
@ -286,15 +331,19 @@ share/webmin/mysql/save_index.cgi
|
|||
share/webmin/mysql/save_sync.cgi
|
||||
share/webmin/mysql/save_tpriv.cgi
|
||||
share/webmin/mysql/save_user.cgi
|
||||
share/webmin/mysql/save_vars.cgi
|
||||
share/webmin/mysql/save_view.cgi
|
||||
share/webmin/mysql/search_form.cgi
|
||||
share/webmin/mysql/start.cgi
|
||||
share/webmin/mysql/stop.cgi
|
||||
share/webmin/mysql/syslog_logs.pl
|
||||
share/webmin/mysql/table_form.cgi
|
||||
share/webmin/mysql/useradmin_update.pl
|
||||
share/webmin/mysql/view-lib.pl
|
||||
share/webmin/mysql/view_table.cgi
|
||||
@dirrm share/webmin/mysql/lang
|
||||
@dirrm share/webmin/mysql/images
|
||||
@dirrm share/webmin/mysql/help
|
||||
@dirrm share/webmin/mysql
|
||||
@dirrm share/examples/webmin/mysql
|
||||
@dirrm etc/webmin/mysql
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:42:12 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/mysql.wbm.gz) = 5bc4264e0c255856f0a8be619a6eb99dcb78b789
|
||||
RMD160 (webmin-modules-1.270/mysql.wbm.gz) = 6e9c4462a8f2d5fac693982613e130aa6674c368
|
||||
Size (webmin-modules-1.270/mysql.wbm.gz) = 181812 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
DISTNAME= net
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= net
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for network configuration
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 04:03:06 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
share/examples/webmin/net/config
|
||||
share/webmin/net/CHANGELOG
|
||||
share/webmin/net/acl_security.pl
|
||||
|
@ -22,6 +22,7 @@ share/webmin/net/config.info.de
|
|||
share/webmin/net/config.info.es
|
||||
share/webmin/net/config.info.fa
|
||||
share/webmin/net/config.info.fr
|
||||
share/webmin/net/config.info.ja_JP.UTF-8
|
||||
share/webmin/net/config.info.ja_JP.euc
|
||||
share/webmin/net/config.info.pl
|
||||
share/webmin/net/config.info.ru_RU
|
||||
|
@ -30,10 +31,17 @@ share/webmin/net/config.info.sv
|
|||
share/webmin/net/config.info.tr
|
||||
share/webmin/net/config.info.uk_UA
|
||||
share/webmin/net/config.info.zh_CN
|
||||
share/webmin/net/config.info.zh_CN.UTF-8
|
||||
share/webmin/net/config.info.zh_TW.Big5
|
||||
share/webmin/net/config.info.zh_TW.UTF-8
|
||||
share/webmin/net/create_route.cgi
|
||||
share/webmin/net/cygwin-lib.pl
|
||||
share/webmin/net/debian-linux-lib.pl
|
||||
share/webmin/net/defaultacl
|
||||
share/webmin/net/delete_aifcs.cgi
|
||||
share/webmin/net/delete_bifcs.cgi
|
||||
share/webmin/net/delete_hosts.cgi
|
||||
share/webmin/net/delete_routes.cgi
|
||||
share/webmin/net/edit_aifc.cgi
|
||||
share/webmin/net/edit_bifc.cgi
|
||||
share/webmin/net/edit_host.cgi
|
||||
|
@ -59,7 +67,9 @@ share/webmin/net/lang/es
|
|||
share/webmin/net/lang/fa
|
||||
share/webmin/net/lang/fr
|
||||
share/webmin/net/lang/it
|
||||
share/webmin/net/lang/ja_JP.UTF-8
|
||||
share/webmin/net/lang/ja_JP.euc
|
||||
share/webmin/net/lang/ko_KR.UTF-8
|
||||
share/webmin/net/lang/ko_KR.euc
|
||||
share/webmin/net/lang/nl
|
||||
share/webmin/net/lang/pl
|
||||
|
@ -70,7 +80,9 @@ share/webmin/net/lang/sv
|
|||
share/webmin/net/lang/tr
|
||||
share/webmin/net/lang/uk_UA
|
||||
share/webmin/net/lang/zh_CN
|
||||
share/webmin/net/lang/zh_CN.UTF-8
|
||||
share/webmin/net/lang/zh_TW.Big5
|
||||
share/webmin/net/lang/zh_TW.UTF-8
|
||||
share/webmin/net/linux-lib.pl
|
||||
share/webmin/net/list_dns.cgi
|
||||
share/webmin/net/list_hosts.cgi
|
||||
|
@ -109,6 +121,7 @@ share/webmin/net/suse-linux-9.0-lib.pl
|
|||
share/webmin/net/suse-linux-9.1-lib.pl
|
||||
share/webmin/net/suse-linux-9.2-lib.pl
|
||||
share/webmin/net/suse-linux-9.3-lib.pl
|
||||
share/webmin/net/suse-linux-10.1-lib.pl
|
||||
share/webmin/net/suse-linux-lib.pl
|
||||
share/webmin/net/trustix-linux-lib.pl
|
||||
share/webmin/net/turbo-linux-lib.pl
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:03:06 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/net.wbm.gz) = 97ab2abc3a710fcf1e9c55fdd66f896354ba3988
|
||||
RMD160 (webmin-modules-1.270/net.wbm.gz) = 0809898265ff5931b630a2a92bab2779d59553fa
|
||||
Size (webmin-modules-1.270/net.wbm.gz) = 135184 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
DISTNAME= openslp
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= openslp
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to configure an OpenSLP server
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:41:50 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/openslp.wbm.gz) = 32a9cd67139dfae0a0d8c3812ce3ff4ec6697755
|
||||
RMD160 (webmin-modules-1.270/openslp.wbm.gz) = 812186822b09791e2373ed35b92de59811c60374
|
||||
Size (webmin-modules-1.270/openslp.wbm.gz) = 19988 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,15 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2006/05/16 21:42:00 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
DISTNAME= passwd
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= passwd
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES+= useradmin
|
||||
|
||||
DEPENDS+= wbm-useradmin>=1.270:../../sysutils/wbm-useradmin
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to change users' system passwords
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:42:00 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
share/examples/webmin/passwd/config
|
||||
share/webmin/passwd/CHANGELOG
|
||||
share/webmin/passwd/acl_security.pl
|
||||
|
@ -22,6 +22,7 @@ share/webmin/passwd/config.info.ru_SU
|
|||
share/webmin/passwd/config.info.tr
|
||||
share/webmin/passwd/config.info.uk_UA
|
||||
share/webmin/passwd/config.info.zh_TW.Big5
|
||||
share/webmin/passwd/config.info.zh_TW.UTF-8
|
||||
share/webmin/passwd/defaultacl
|
||||
share/webmin/passwd/edit_passwd.cgi
|
||||
share/webmin/passwd/images/icon.gif
|
||||
|
@ -48,7 +49,9 @@ share/webmin/passwd/lang/sk
|
|||
share/webmin/passwd/lang/tr
|
||||
share/webmin/passwd/lang/uk_UA
|
||||
share/webmin/passwd/lang/zh_CN
|
||||
share/webmin/passwd/lang/zh_CN.UTF-8
|
||||
share/webmin/passwd/lang/zh_TW.Big5
|
||||
share/webmin/passwd/lang/zh_TW.UTF-8
|
||||
share/webmin/passwd/log_parser.pl
|
||||
share/webmin/passwd/module.info
|
||||
share/webmin/passwd/passwd-lib.pl
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:42:00 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:03 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/passwd.wbm.gz) = 143371104fc5b9180893bd0b5edb6c1124d25263
|
||||
RMD160 (webmin-modules-1.270/passwd.wbm.gz) = 8d418783f23a6f4a4aed81e88bcac90e6cbf686e
|
||||
Size (webmin-modules-1.270/passwd.wbm.gz) = 23693 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,17 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.3 2007/02/19 21:52:42 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
DISTNAME= postfix
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
PKGREVSION= 1
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= postfix
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for Postfix mail server configuration
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 04:03:27 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
share/examples/webmin/postfix/config
|
||||
share/webmin/postfix/CHANGELOG
|
||||
share/webmin/postfix/acl_security.pl
|
||||
|
@ -21,6 +21,7 @@ share/webmin/postfix/config.info.ca
|
|||
share/webmin/postfix/config.info.de
|
||||
share/webmin/postfix/config.info.es
|
||||
share/webmin/postfix/config.info.fr
|
||||
share/webmin/postfix/config.info.ja_JP.UTF-8
|
||||
share/webmin/postfix/config.info.ja_JP.euc
|
||||
share/webmin/postfix/config.info.pl
|
||||
share/webmin/postfix/config.info.ru_RU
|
||||
|
@ -29,7 +30,9 @@ share/webmin/postfix/config.info.sv
|
|||
share/webmin/postfix/config.info.tr
|
||||
share/webmin/postfix/config.info.uk_UA
|
||||
share/webmin/postfix/config.info.zh_CN
|
||||
share/webmin/postfix/config.info.zh_CN.UTF-8
|
||||
share/webmin/postfix/config.info.zh_TW.Big5
|
||||
share/webmin/postfix/config.info.zh_TW.UTF-8
|
||||
share/webmin/postfix/debug.cgi
|
||||
share/webmin/postfix/defaultacl
|
||||
share/webmin/postfix/delete_aliases.cgi
|
||||
|
@ -49,7 +52,40 @@ share/webmin/postfix/filter.pl
|
|||
share/webmin/postfix/flushq.cgi
|
||||
share/webmin/postfix/general.cgi
|
||||
share/webmin/postfix/header.cgi
|
||||
share/webmin/postfix/help/access.ca.html
|
||||
share/webmin/postfix/help/access.html
|
||||
share/webmin/postfix/help/alias_cmt.ca.html
|
||||
share/webmin/postfix/help/alias_cmt.html
|
||||
share/webmin/postfix/help/alias_enabled.ca.html
|
||||
share/webmin/postfix/help/alias_enabled.es.html
|
||||
share/webmin/postfix/help/alias_enabled.fr.html
|
||||
share/webmin/postfix/help/alias_enabled.html
|
||||
share/webmin/postfix/help/alias_enabled.pl.html
|
||||
share/webmin/postfix/help/alias_enabled.ru_RU.html
|
||||
share/webmin/postfix/help/alias_enabled.ru_SU.html
|
||||
share/webmin/postfix/help/alias_enabled.sv.html
|
||||
share/webmin/postfix/help/alias_enabled.zh_TW.Big5.html
|
||||
share/webmin/postfix/help/alias_enabled.zh_TW.UTF-8.html
|
||||
share/webmin/postfix/help/alias_name.ca.html
|
||||
share/webmin/postfix/help/alias_name.es.html
|
||||
share/webmin/postfix/help/alias_name.fr.html
|
||||
share/webmin/postfix/help/alias_name.html
|
||||
share/webmin/postfix/help/alias_name.pl.html
|
||||
share/webmin/postfix/help/alias_name.ru_RU.html
|
||||
share/webmin/postfix/help/alias_name.ru_SU.html
|
||||
share/webmin/postfix/help/alias_name.sv.html
|
||||
share/webmin/postfix/help/alias_name.zh_TW.Big5.html
|
||||
share/webmin/postfix/help/alias_name.zh_TW.UTF-8.html
|
||||
share/webmin/postfix/help/alias_to.ca.html
|
||||
share/webmin/postfix/help/alias_to.es.html
|
||||
share/webmin/postfix/help/alias_to.fr.html
|
||||
share/webmin/postfix/help/alias_to.html
|
||||
share/webmin/postfix/help/alias_to.pl.html
|
||||
share/webmin/postfix/help/alias_to.ru_RU.html
|
||||
share/webmin/postfix/help/alias_to.ru_SU.html
|
||||
share/webmin/postfix/help/alias_to.sv.html
|
||||
share/webmin/postfix/help/alias_to.zh_TW.Big5.html
|
||||
share/webmin/postfix/help/alias_to.zh_TW.UTF-8.html
|
||||
share/webmin/postfix/help/aliases.ca.html
|
||||
share/webmin/postfix/help/aliases.es.html
|
||||
share/webmin/postfix/help/aliases.html
|
||||
|
@ -138,6 +174,7 @@ share/webmin/postfix/help/opt_canonical_maps.es.html
|
|||
share/webmin/postfix/help/opt_canonical_maps.html
|
||||
share/webmin/postfix/help/opt_canonical_maps.pl.html
|
||||
share/webmin/postfix/help/opt_canonical_maps.sv.html
|
||||
share/webmin/postfix/help/opt_check_sender_access.ca.html
|
||||
share/webmin/postfix/help/opt_check_sender_access.html
|
||||
share/webmin/postfix/help/opt_command_time_limit.ca.html
|
||||
share/webmin/postfix/help/opt_command_time_limit.es.html
|
||||
|
@ -535,6 +572,7 @@ share/webmin/postfix/help/opt_reject_code.es.html
|
|||
share/webmin/postfix/help/opt_reject_code.html
|
||||
share/webmin/postfix/help/opt_reject_code.pl.html
|
||||
share/webmin/postfix/help/opt_reject_code.sv.html
|
||||
share/webmin/postfix/help/opt_reject_rbl_client.ca.html
|
||||
share/webmin/postfix/help/opt_reject_rbl_client.html
|
||||
share/webmin/postfix/help/opt_relay_domains.ca.html
|
||||
share/webmin/postfix/help/opt_relay_domains.de.html
|
||||
|
@ -801,8 +839,10 @@ share/webmin/postfix/lang/de
|
|||
share/webmin/postfix/lang/en
|
||||
share/webmin/postfix/lang/es
|
||||
share/webmin/postfix/lang/fr
|
||||
share/webmin/postfix/lang/ja_JP.UTF-8
|
||||
share/webmin/postfix/lang/ja_JP.euc
|
||||
share/webmin/postfix/lang/ja_JP.jis
|
||||
share/webmin/postfix/lang/ko_KR.UTF-8
|
||||
share/webmin/postfix/lang/ko_KR.euc
|
||||
share/webmin/postfix/lang/pl
|
||||
share/webmin/postfix/lang/pt_BR
|
||||
|
@ -811,9 +851,12 @@ share/webmin/postfix/lang/ru_SU
|
|||
share/webmin/postfix/lang/sv
|
||||
share/webmin/postfix/lang/uk_UA
|
||||
share/webmin/postfix/lang/zh_CN
|
||||
share/webmin/postfix/lang/zh_CN.UTF-8
|
||||
share/webmin/postfix/lang/zh_TW.Big5
|
||||
share/webmin/postfix/lang/zh_TW.UTF-8
|
||||
share/webmin/postfix/ldap.cgi
|
||||
share/webmin/postfix/local_delivery.cgi
|
||||
share/webmin/postfix/log_parser.pl
|
||||
share/webmin/postfix/mailq.cgi
|
||||
share/webmin/postfix/mailq_search.cgi
|
||||
share/webmin/postfix/manual.cgi
|
||||
|
@ -854,3 +897,4 @@ share/webmin/postfix/virtual.cgi
|
|||
@dirrm share/webmin/postfix/help
|
||||
@dirrm share/webmin/postfix
|
||||
@dirrm share/examples/webmin/postfix
|
||||
@dirrm etc/webmin/postfix
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:03:26 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/postfix.wbm.gz) = 1718786cb5f0a649ed85cf0aa2aa51213ba485ea
|
||||
RMD160 (webmin-modules-1.270/postfix.wbm.gz) = 8e954f6416b69e5dabab752ad46960114f879d4f
|
||||
Size (webmin-modules-1.270/postfix.wbm.gz) = 314719 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:43 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
DISTNAME= postgresql
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= postgresql
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for managing PostgreSQL databases
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 04:16:32 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
share/examples/webmin/postgresql/config
|
||||
share/webmin/postgresql/CHANGELOG
|
||||
share/webmin/postgresql/acl_security.pl
|
||||
|
@ -14,7 +14,7 @@ share/webmin/postgresql/config-freebsd
|
|||
share/webmin/postgresql/config-gentoo-linux
|
||||
share/webmin/postgresql/config-mandrake-linux
|
||||
share/webmin/postgresql/config-msc-linux
|
||||
share/webmin/postgresql/config-netbsd
|
||||
share/webmin/postgresql/config-${LOWER_OPSYS}
|
||||
share/webmin/postgresql/config-redhat-linux
|
||||
share/webmin/postgresql/config-redhat-linux-10.0-*
|
||||
share/webmin/postgresql/config-redhat-linux-7.0-7.2
|
||||
|
@ -27,23 +27,30 @@ share/webmin/postgresql/config-suse-linux-7.1-9.0
|
|||
share/webmin/postgresql/config-suse-linux-9.1-*
|
||||
share/webmin/postgresql/config-trustix-linux
|
||||
share/webmin/postgresql/config-united-linux
|
||||
share/webmin/postgresql/config-windows
|
||||
share/webmin/postgresql/config.info
|
||||
share/webmin/postgresql/config.info.ca
|
||||
share/webmin/postgresql/config.info.de
|
||||
share/webmin/postgresql/config.info.es
|
||||
share/webmin/postgresql/config.info.fr
|
||||
share/webmin/postgresql/config.info.ja_JP.UTF-8
|
||||
share/webmin/postgresql/config.info.ja_JP.euc
|
||||
share/webmin/postgresql/config.info.pl
|
||||
share/webmin/postgresql/config.info.ru_RU
|
||||
share/webmin/postgresql/config.info.ru_SU
|
||||
share/webmin/postgresql/config.info.sv
|
||||
share/webmin/postgresql/config.info.tr
|
||||
share/webmin/postgresql/config.info.uk_UA
|
||||
share/webmin/postgresql/config.info.zh_CN
|
||||
share/webmin/postgresql/config.info.zh_CN.UTF-8
|
||||
share/webmin/postgresql/config.info.zh_TW.Big5
|
||||
share/webmin/postgresql/config.info.zh_TW.UTF-8
|
||||
share/webmin/postgresql/cpan_modules.pl
|
||||
share/webmin/postgresql/create_table.cgi
|
||||
share/webmin/postgresql/csv.cgi
|
||||
share/webmin/postgresql/csv_form.cgi
|
||||
share/webmin/postgresql/defaultacl
|
||||
share/webmin/postgresql/delete_grants.cgi
|
||||
share/webmin/postgresql/delete_groups.cgi
|
||||
share/webmin/postgresql/delete_hosts.cgi
|
||||
share/webmin/postgresql/delete_users.cgi
|
||||
|
@ -67,12 +74,14 @@ share/webmin/postgresql/edit_view.cgi
|
|||
share/webmin/postgresql/exec.cgi
|
||||
share/webmin/postgresql/exec_file.cgi
|
||||
share/webmin/postgresql/exec_form.cgi
|
||||
share/webmin/postgresql/help/backup_form.ca.html
|
||||
share/webmin/postgresql/help/backup_form.html
|
||||
share/webmin/postgresql/help/create_field.ca.html
|
||||
share/webmin/postgresql/help/create_field.es.html
|
||||
share/webmin/postgresql/help/create_field.html
|
||||
share/webmin/postgresql/help/create_field.hu.html
|
||||
share/webmin/postgresql/help/create_field.it.html
|
||||
share/webmin/postgresql/help/create_field.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/create_field.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/create_field.pl.html
|
||||
share/webmin/postgresql/help/csv.ca.html
|
||||
|
@ -85,6 +94,7 @@ share/webmin/postgresql/help/edit_dbase.es.html
|
|||
share/webmin/postgresql/help/edit_dbase.html
|
||||
share/webmin/postgresql/help/edit_dbase.hu.html
|
||||
share/webmin/postgresql/help/edit_dbase.it.html
|
||||
share/webmin/postgresql/help/edit_dbase.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/edit_dbase.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/edit_dbase.pl.html
|
||||
share/webmin/postgresql/help/edit_field.ca.html
|
||||
|
@ -92,6 +102,7 @@ share/webmin/postgresql/help/edit_field.es.html
|
|||
share/webmin/postgresql/help/edit_field.html
|
||||
share/webmin/postgresql/help/edit_field.hu.html
|
||||
share/webmin/postgresql/help/edit_field.it.html
|
||||
share/webmin/postgresql/help/edit_field.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/edit_field.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/edit_field.pl.html
|
||||
share/webmin/postgresql/help/edit_table.ca.html
|
||||
|
@ -99,6 +110,7 @@ share/webmin/postgresql/help/edit_table.es.html
|
|||
share/webmin/postgresql/help/edit_table.html
|
||||
share/webmin/postgresql/help/edit_table.hu.html
|
||||
share/webmin/postgresql/help/edit_table.it.html
|
||||
share/webmin/postgresql/help/edit_table.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/edit_table.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/edit_table.pl.html
|
||||
share/webmin/postgresql/help/exec_form.ca.html
|
||||
|
@ -106,6 +118,7 @@ share/webmin/postgresql/help/exec_form.es.html
|
|||
share/webmin/postgresql/help/exec_form.html
|
||||
share/webmin/postgresql/help/exec_form.hu.html
|
||||
share/webmin/postgresql/help/exec_form.it.html
|
||||
share/webmin/postgresql/help/exec_form.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/exec_form.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/exec_form.pl.html
|
||||
share/webmin/postgresql/help/intro.ca.html
|
||||
|
@ -113,6 +126,7 @@ share/webmin/postgresql/help/intro.es.html
|
|||
share/webmin/postgresql/help/intro.html
|
||||
share/webmin/postgresql/help/intro.hu.html
|
||||
share/webmin/postgresql/help/intro.it.html
|
||||
share/webmin/postgresql/help/intro.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/intro.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/intro.pl.html
|
||||
share/webmin/postgresql/help/list_grants.ca.html
|
||||
|
@ -120,6 +134,7 @@ share/webmin/postgresql/help/list_grants.es.html
|
|||
share/webmin/postgresql/help/list_grants.html
|
||||
share/webmin/postgresql/help/list_grants.hu.html
|
||||
share/webmin/postgresql/help/list_grants.it.html
|
||||
share/webmin/postgresql/help/list_grants.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/list_grants.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/list_grants.pl.html
|
||||
share/webmin/postgresql/help/list_groups.ca.html
|
||||
|
@ -127,6 +142,7 @@ share/webmin/postgresql/help/list_groups.es.html
|
|||
share/webmin/postgresql/help/list_groups.html
|
||||
share/webmin/postgresql/help/list_groups.hu.html
|
||||
share/webmin/postgresql/help/list_groups.it.html
|
||||
share/webmin/postgresql/help/list_groups.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/list_groups.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/list_groups.pl.html
|
||||
share/webmin/postgresql/help/list_hosts.ca.html
|
||||
|
@ -134,6 +150,7 @@ share/webmin/postgresql/help/list_hosts.es.html
|
|||
share/webmin/postgresql/help/list_hosts.html
|
||||
share/webmin/postgresql/help/list_hosts.hu.html
|
||||
share/webmin/postgresql/help/list_hosts.it.html
|
||||
share/webmin/postgresql/help/list_hosts.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/list_hosts.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/list_hosts.pl.html
|
||||
share/webmin/postgresql/help/list_users.ca.html
|
||||
|
@ -141,6 +158,7 @@ share/webmin/postgresql/help/list_users.es.html
|
|||
share/webmin/postgresql/help/list_users.html
|
||||
share/webmin/postgresql/help/list_users.hu.html
|
||||
share/webmin/postgresql/help/list_users.it.html
|
||||
share/webmin/postgresql/help/list_users.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/list_users.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/list_users.pl.html
|
||||
share/webmin/postgresql/help/newdb_form.ca.html
|
||||
|
@ -148,6 +166,7 @@ share/webmin/postgresql/help/newdb_form.es.html
|
|||
share/webmin/postgresql/help/newdb_form.html
|
||||
share/webmin/postgresql/help/newdb_form.hu.html
|
||||
share/webmin/postgresql/help/newdb_form.it.html
|
||||
share/webmin/postgresql/help/newdb_form.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/newdb_form.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/newdb_form.pl.html
|
||||
share/webmin/postgresql/help/table_form.ca.html
|
||||
|
@ -155,6 +174,7 @@ share/webmin/postgresql/help/table_form.es.html
|
|||
share/webmin/postgresql/help/table_form.html
|
||||
share/webmin/postgresql/help/table_form.hu.html
|
||||
share/webmin/postgresql/help/table_form.it.html
|
||||
share/webmin/postgresql/help/table_form.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/table_form.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/table_form.pl.html
|
||||
share/webmin/postgresql/help/view_table.ca.html
|
||||
|
@ -162,6 +182,7 @@ share/webmin/postgresql/help/view_table.es.html
|
|||
share/webmin/postgresql/help/view_table.html
|
||||
share/webmin/postgresql/help/view_table.hu.html
|
||||
share/webmin/postgresql/help/view_table.it.html
|
||||
share/webmin/postgresql/help/view_table.ja_JP.UTF-8.html
|
||||
share/webmin/postgresql/help/view_table.ja_JP.euc.html
|
||||
share/webmin/postgresql/help/view_table.pl.html
|
||||
share/webmin/postgresql/images/Thumbs.db
|
||||
|
@ -190,15 +211,20 @@ share/webmin/postgresql/lang/es
|
|||
share/webmin/postgresql/lang/fr
|
||||
share/webmin/postgresql/lang/hu
|
||||
share/webmin/postgresql/lang/it
|
||||
share/webmin/postgresql/lang/ja_JP.UTF-8
|
||||
share/webmin/postgresql/lang/ja_JP.euc
|
||||
share/webmin/postgresql/lang/ko_KR.UTF-8
|
||||
share/webmin/postgresql/lang/ko_KR.euc
|
||||
share/webmin/postgresql/lang/pl
|
||||
share/webmin/postgresql/lang/pt
|
||||
share/webmin/postgresql/lang/ru_RU
|
||||
share/webmin/postgresql/lang/ru_SU
|
||||
share/webmin/postgresql/lang/sv
|
||||
share/webmin/postgresql/lang/uk_UA
|
||||
share/webmin/postgresql/lang/zh_CN
|
||||
share/webmin/postgresql/lang/zh_CN.UTF-8
|
||||
share/webmin/postgresql/lang/zh_TW.Big5
|
||||
share/webmin/postgresql/lang/zh_TW.UTF-8
|
||||
share/webmin/postgresql/list_grants.cgi
|
||||
share/webmin/postgresql/list_groups.cgi
|
||||
share/webmin/postgresql/list_hosts.cgi
|
||||
|
@ -209,6 +235,9 @@ share/webmin/postgresql/login.cgi
|
|||
share/webmin/postgresql/module.info
|
||||
share/webmin/postgresql/newdb.cgi
|
||||
share/webmin/postgresql/newdb_form.cgi
|
||||
share/webmin/postgresql/old/download.cgi
|
||||
share/webmin/postgresql/old/search_form.cgi
|
||||
share/webmin/postgresql/old/view_table.cgi
|
||||
share/webmin/postgresql/postgresql-lib.pl
|
||||
share/webmin/postgresql/restore.cgi
|
||||
share/webmin/postgresql/restore_form.cgi
|
||||
|
@ -228,9 +257,12 @@ share/webmin/postgresql/stop.cgi
|
|||
share/webmin/postgresql/table_form.cgi
|
||||
share/webmin/postgresql/up.cgi
|
||||
share/webmin/postgresql/useradmin_update.pl
|
||||
share/webmin/postgresql/view-lib.pl
|
||||
share/webmin/postgresql/view_table.cgi
|
||||
@dirrm share/webmin/postgresql/old
|
||||
@dirrm share/webmin/postgresql/lang
|
||||
@dirrm share/webmin/postgresql/images
|
||||
@dirrm share/webmin/postgresql/help
|
||||
@dirrm share/webmin/postgresql
|
||||
@dirrm share/examples/webmin/postgresql
|
||||
@dirrm etc/webmin/postgresql
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:16:32 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/postgresql.wbm.gz) = 371e22497ade84594d2b7db7493729879f9ee809
|
||||
RMD160 (webmin-modules-1.270/postgresql.wbm.gz) = e47e366dc467c841086c21819056f214d6027b7a
|
||||
Size (webmin-modules-1.270/postgresql.wbm.gz) = 154041 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:43 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
DISTNAME= qmailadmin
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= qmailadmin
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to configure the qmail mail server
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 21:42:22 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
share/examples/webmin/qmailadmin/config
|
||||
share/webmin/qmailadmin/CHANGELOG
|
||||
share/webmin/qmailadmin/autoreply.pl
|
||||
|
@ -56,6 +56,7 @@ share/webmin/qmailadmin/lang/ru_RU
|
|||
share/webmin/qmailadmin/lang/ru_SU
|
||||
share/webmin/qmailadmin/lang/uk_UA
|
||||
share/webmin/qmailadmin/lang/zh_CN
|
||||
share/webmin/qmailadmin/lang/zh_CN.UTF-8
|
||||
share/webmin/qmailadmin/list_aliases.cgi
|
||||
share/webmin/qmailadmin/list_assigns.cgi
|
||||
share/webmin/qmailadmin/list_bads.cgi
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 21:42:22 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/qmailadmin.wbm.gz) = 8fd8684f2fd753ffe25c94fa5336ef704d36e3e1
|
||||
RMD160 (webmin-modules-1.270/qmailadmin.wbm.gz) = 33f54d9ba86be9251f2d26c66b34a840fe2ecc69
|
||||
Size (webmin-modules-1.270/qmailadmin.wbm.gz) = 80943 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.2 2006/05/19 17:14:53 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
DISTNAME= quota
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
PKGREVISION= 1
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= quota
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES+= mount
|
||||
|
||||
DEPENDS+= wbm-mount>=1.270:../../sysutils/wbm-mount
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to setup disk quotas
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:42:30 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
share/examples/webmin/quota/config
|
||||
share/webmin/quota/CHANGELOG
|
||||
share/webmin/quota/acl_security.pl
|
||||
|
@ -15,6 +15,7 @@ share/webmin/quota/config-solaris
|
|||
share/webmin/quota/config-unixware
|
||||
share/webmin/quota/config.info
|
||||
share/webmin/quota/config.info.ca
|
||||
share/webmin/quota/config.info.da
|
||||
share/webmin/quota/config.info.de
|
||||
share/webmin/quota/config.info.es
|
||||
share/webmin/quota/config.info.fr
|
||||
|
@ -27,7 +28,9 @@ share/webmin/quota/config.info.sv
|
|||
share/webmin/quota/config.info.tr
|
||||
share/webmin/quota/config.info.uk_UA
|
||||
share/webmin/quota/config.info.zh_CN
|
||||
share/webmin/quota/config.info.zh_CN.UTF-8
|
||||
share/webmin/quota/config.info.zh_TW.Big5
|
||||
share/webmin/quota/config.info.zh_TW.UTF-8
|
||||
share/webmin/quota/copy_group.cgi
|
||||
share/webmin/quota/copy_group_form.cgi
|
||||
share/webmin/quota/copy_user.cgi
|
||||
|
@ -45,6 +48,7 @@ share/webmin/quota/group_filesys.cgi
|
|||
share/webmin/quota/group_grace_form.cgi
|
||||
share/webmin/quota/group_grace_save.cgi
|
||||
share/webmin/quota/help/copy_group.ca.html
|
||||
share/webmin/quota/help/copy_group.da.html
|
||||
share/webmin/quota/help/copy_group.es.html
|
||||
share/webmin/quota/help/copy_group.fr.html
|
||||
share/webmin/quota/help/copy_group.html
|
||||
|
@ -52,7 +56,9 @@ share/webmin/quota/help/copy_group.nl.html
|
|||
share/webmin/quota/help/copy_group.pl.html
|
||||
share/webmin/quota/help/copy_group.sv.html
|
||||
share/webmin/quota/help/copy_group.zh_TW.Big5.html
|
||||
share/webmin/quota/help/copy_group.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/copy_user.ca.html
|
||||
share/webmin/quota/help/copy_user.da.html
|
||||
share/webmin/quota/help/copy_user.es.html
|
||||
share/webmin/quota/help/copy_user.fr.html
|
||||
share/webmin/quota/help/copy_user.html
|
||||
|
@ -60,6 +66,8 @@ share/webmin/quota/help/copy_user.nl.html
|
|||
share/webmin/quota/help/copy_user.pl.html
|
||||
share/webmin/quota/help/copy_user.sv.html
|
||||
share/webmin/quota/help/copy_user.zh_TW.Big5.html
|
||||
share/webmin/quota/help/copy_user.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/edit_group_mass.ca.html
|
||||
share/webmin/quota/help/edit_group_mass.html
|
||||
share/webmin/quota/help/edit_group_quota.ca.html
|
||||
share/webmin/quota/help/edit_group_quota.es.html
|
||||
|
@ -69,6 +77,8 @@ share/webmin/quota/help/edit_group_quota.nl.html
|
|||
share/webmin/quota/help/edit_group_quota.pl.html
|
||||
share/webmin/quota/help/edit_group_quota.sv.html
|
||||
share/webmin/quota/help/edit_group_quota.zh_TW.Big5.html
|
||||
share/webmin/quota/help/edit_group_quota.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/edit_user_mass.ca.html
|
||||
share/webmin/quota/help/edit_user_mass.html
|
||||
share/webmin/quota/help/edit_user_quota.ca.html
|
||||
share/webmin/quota/help/edit_user_quota.es.html
|
||||
|
@ -78,6 +88,7 @@ share/webmin/quota/help/edit_user_quota.nl.html
|
|||
share/webmin/quota/help/edit_user_quota.pl.html
|
||||
share/webmin/quota/help/edit_user_quota.sv.html
|
||||
share/webmin/quota/help/edit_user_quota.zh_TW.Big5.html
|
||||
share/webmin/quota/help/edit_user_quota.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/group_filesys.ca.html
|
||||
share/webmin/quota/help/group_filesys.es.html
|
||||
share/webmin/quota/help/group_filesys.fr.html
|
||||
|
@ -86,6 +97,7 @@ share/webmin/quota/help/group_filesys.nl.html
|
|||
share/webmin/quota/help/group_filesys.pl.html
|
||||
share/webmin/quota/help/group_filesys.sv.html
|
||||
share/webmin/quota/help/group_filesys.zh_TW.Big5.html
|
||||
share/webmin/quota/help/group_filesys.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/group_grace.ca.html
|
||||
share/webmin/quota/help/group_grace.es.html
|
||||
share/webmin/quota/help/group_grace.fr.html
|
||||
|
@ -94,6 +106,7 @@ share/webmin/quota/help/group_grace.nl.html
|
|||
share/webmin/quota/help/group_grace.pl.html
|
||||
share/webmin/quota/help/group_grace.sv.html
|
||||
share/webmin/quota/help/group_grace.zh_TW.Big5.html
|
||||
share/webmin/quota/help/group_grace.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/intro.ca.html
|
||||
share/webmin/quota/help/intro.es.html
|
||||
share/webmin/quota/help/intro.fr.html
|
||||
|
@ -102,6 +115,7 @@ share/webmin/quota/help/intro.nl.html
|
|||
share/webmin/quota/help/intro.pl.html
|
||||
share/webmin/quota/help/intro.sv.html
|
||||
share/webmin/quota/help/intro.zh_TW.Big5.html
|
||||
share/webmin/quota/help/intro.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/list_groups.ca.html
|
||||
share/webmin/quota/help/list_groups.es.html
|
||||
share/webmin/quota/help/list_groups.fr.html
|
||||
|
@ -117,6 +131,7 @@ share/webmin/quota/help/list_users.nl.html
|
|||
share/webmin/quota/help/list_users.pl.html
|
||||
share/webmin/quota/help/list_users.sv.html
|
||||
share/webmin/quota/help/list_users.zh_TW.Big5.html
|
||||
share/webmin/quota/help/list_users.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/user_filesys.ca.html
|
||||
share/webmin/quota/help/user_filesys.es.html
|
||||
share/webmin/quota/help/user_filesys.fr.html
|
||||
|
@ -125,6 +140,7 @@ share/webmin/quota/help/user_filesys.nl.html
|
|||
share/webmin/quota/help/user_filesys.pl.html
|
||||
share/webmin/quota/help/user_filesys.sv.html
|
||||
share/webmin/quota/help/user_filesys.zh_TW.Big5.html
|
||||
share/webmin/quota/help/user_filesys.zh_TW.UTF-8.html
|
||||
share/webmin/quota/help/user_grace.ca.html
|
||||
share/webmin/quota/help/user_grace.es.html
|
||||
share/webmin/quota/help/user_grace.fr.html
|
||||
|
@ -133,6 +149,7 @@ share/webmin/quota/help/user_grace.nl.html
|
|||
share/webmin/quota/help/user_grace.pl.html
|
||||
share/webmin/quota/help/user_grace.sv.html
|
||||
share/webmin/quota/help/user_grace.zh_TW.Big5.html
|
||||
share/webmin/quota/help/user_grace.zh_TW.UTF-8.html
|
||||
share/webmin/quota/hpux-lib.pl
|
||||
share/webmin/quota/images/icon.gif
|
||||
share/webmin/quota/images/smallicon.gif
|
||||
|
@ -141,11 +158,14 @@ share/webmin/quota/install_check.pl
|
|||
share/webmin/quota/irix-lib.pl
|
||||
share/webmin/quota/lang/ca
|
||||
share/webmin/quota/lang/cz
|
||||
share/webmin/quota/lang/da
|
||||
share/webmin/quota/lang/en
|
||||
share/webmin/quota/lang/es
|
||||
share/webmin/quota/lang/fr
|
||||
share/webmin/quota/lang/it
|
||||
share/webmin/quota/lang/ja_JP.UTF-8
|
||||
share/webmin/quota/lang/ja_JP.euc
|
||||
share/webmin/quota/lang/ko_KR.UTF-8
|
||||
share/webmin/quota/lang/ko_KR.euc
|
||||
share/webmin/quota/lang/nl
|
||||
share/webmin/quota/lang/pl
|
||||
|
@ -157,7 +177,9 @@ share/webmin/quota/lang/sv
|
|||
share/webmin/quota/lang/tr
|
||||
share/webmin/quota/lang/uk_UA
|
||||
share/webmin/quota/lang/zh_CN
|
||||
share/webmin/quota/lang/zh_CN.UTF-8
|
||||
share/webmin/quota/lang/zh_TW.Big5
|
||||
share/webmin/quota/lang/zh_TW.UTF-8
|
||||
share/webmin/quota/linux-lib.pl
|
||||
share/webmin/quota/list_groups.cgi
|
||||
share/webmin/quota/list_users.cgi
|
||||
|
@ -169,6 +191,7 @@ share/webmin/quota/notes
|
|||
share/webmin/quota/openbsd-lib.pl
|
||||
share/webmin/quota/quota-lib.pl
|
||||
share/webmin/quota/save_email.cgi
|
||||
share/webmin/quota/save_gemail.cgi
|
||||
share/webmin/quota/save_group_mass.cgi
|
||||
share/webmin/quota/save_group_quota.cgi
|
||||
share/webmin/quota/save_gsync.cgi
|
||||
|
@ -187,3 +210,4 @@ share/webmin/quota/useradmin_update.pl
|
|||
@dirrm share/webmin/quota/help
|
||||
@dirrm share/webmin/quota
|
||||
@dirrm share/examples/webmin/quota
|
||||
@dirrm etc/webmin/quota
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:42:30 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:04 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/quota.wbm.gz) = 3891416daeea2d267cdc83df8efdfec6dd0f628c
|
||||
RMD160 (webmin-modules-1.270/quota.wbm.gz) = e881ef312c7d5972058742be9d6c18d75f69ca96
|
||||
Size (webmin-modules-1.270/quota.wbm.gz) = 110059 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:43 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
DISTNAME= sendmail
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= sendmail
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to manage Sendmail
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:42:42 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
share/examples/webmin/sendmail/config
|
||||
share/webmin/sendmail/CHANGELOG
|
||||
share/webmin/sendmail/access-lib.pl
|
||||
|
@ -64,7 +64,9 @@ share/webmin/sendmail/config.info.sv
|
|||
share/webmin/sendmail/config.info.tr
|
||||
share/webmin/sendmail/config.info.uk_UA
|
||||
share/webmin/sendmail/config.info.zh_CN
|
||||
share/webmin/sendmail/config.info.zh_CN.UTF-8
|
||||
share/webmin/sendmail/config.info.zh_TW.Big5
|
||||
share/webmin/sendmail/config.info.zh_TW.UTF-8
|
||||
share/webmin/sendmail/create_file.cgi
|
||||
share/webmin/sendmail/defaultacl
|
||||
share/webmin/sendmail/defines
|
||||
|
@ -94,6 +96,8 @@ share/webmin/sendmail/feedback_files.pl
|
|||
share/webmin/sendmail/filter.pl
|
||||
share/webmin/sendmail/flushq.cgi
|
||||
share/webmin/sendmail/generics-lib.pl
|
||||
share/webmin/sendmail/help/alias_cmt.ca.html
|
||||
share/webmin/sendmail/help/alias_cmt.html
|
||||
share/webmin/sendmail/help/alias_enabled.ca.html
|
||||
share/webmin/sendmail/help/alias_enabled.es.html
|
||||
share/webmin/sendmail/help/alias_enabled.fr.html
|
||||
|
@ -103,6 +107,7 @@ share/webmin/sendmail/help/alias_enabled.ru_RU.html
|
|||
share/webmin/sendmail/help/alias_enabled.ru_SU.html
|
||||
share/webmin/sendmail/help/alias_enabled.sv.html
|
||||
share/webmin/sendmail/help/alias_enabled.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/alias_enabled.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/alias_name.ca.html
|
||||
share/webmin/sendmail/help/alias_name.es.html
|
||||
share/webmin/sendmail/help/alias_name.fr.html
|
||||
|
@ -112,6 +117,7 @@ share/webmin/sendmail/help/alias_name.ru_RU.html
|
|||
share/webmin/sendmail/help/alias_name.ru_SU.html
|
||||
share/webmin/sendmail/help/alias_name.sv.html
|
||||
share/webmin/sendmail/help/alias_name.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/alias_name.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/alias_to.ca.html
|
||||
share/webmin/sendmail/help/alias_to.es.html
|
||||
share/webmin/sendmail/help/alias_to.fr.html
|
||||
|
@ -121,6 +127,7 @@ share/webmin/sendmail/help/alias_to.ru_RU.html
|
|||
share/webmin/sendmail/help/alias_to.ru_SU.html
|
||||
share/webmin/sendmail/help/alias_to.sv.html
|
||||
share/webmin/sendmail/help/alias_to.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/alias_to.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/aliases.ca.html
|
||||
share/webmin/sendmail/help/aliases.es.html
|
||||
share/webmin/sendmail/help/aliases.fr.html
|
||||
|
@ -130,6 +137,7 @@ share/webmin/sendmail/help/aliases.ru_RU.html
|
|||
share/webmin/sendmail/help/aliases.ru_SU.html
|
||||
share/webmin/sendmail/help/aliases.sv.html
|
||||
share/webmin/sendmail/help/aliases.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/aliases.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/edit_alias.ca.html
|
||||
share/webmin/sendmail/help/edit_alias.es.html
|
||||
share/webmin/sendmail/help/edit_alias.fr.html
|
||||
|
@ -139,6 +147,7 @@ share/webmin/sendmail/help/edit_alias.ru_RU.html
|
|||
share/webmin/sendmail/help/edit_alias.ru_SU.html
|
||||
share/webmin/sendmail/help/edit_alias.sv.html
|
||||
share/webmin/sendmail/help/edit_alias.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/edit_alias.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/intro.ca.html
|
||||
share/webmin/sendmail/help/intro.es.html
|
||||
share/webmin/sendmail/help/intro.fr.html
|
||||
|
@ -148,6 +157,9 @@ share/webmin/sendmail/help/intro.ru_RU.html
|
|||
share/webmin/sendmail/help/intro.ru_SU.html
|
||||
share/webmin/sendmail/help/intro.sv.html
|
||||
share/webmin/sendmail/help/intro.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/intro.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_BadRcptThrottle.ca.html
|
||||
share/webmin/sendmail/help/opt_BadRcptThrottle.html
|
||||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.ca.html
|
||||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.es.html
|
||||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.fr.html
|
||||
|
@ -157,6 +169,7 @@ share/webmin/sendmail/help/opt_ConnectionRateThrottle.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.sv.html
|
||||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_ConnectionRateThrottle.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_DH.ca.html
|
||||
share/webmin/sendmail/help/opt_DH.es.html
|
||||
share/webmin/sendmail/help/opt_DH.fr.html
|
||||
|
@ -166,6 +179,7 @@ share/webmin/sendmail/help/opt_DH.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_DH.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_DH.sv.html
|
||||
share/webmin/sendmail/help/opt_DH.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_DH.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_DR.ca.html
|
||||
share/webmin/sendmail/help/opt_DR.es.html
|
||||
share/webmin/sendmail/help/opt_DR.fr.html
|
||||
|
@ -175,6 +189,7 @@ share/webmin/sendmail/help/opt_DR.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_DR.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_DR.sv.html
|
||||
share/webmin/sendmail/help/opt_DR.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_DR.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_DS.ca.html
|
||||
share/webmin/sendmail/help/opt_DS.es.html
|
||||
share/webmin/sendmail/help/opt_DS.fr.html
|
||||
|
@ -184,6 +199,7 @@ share/webmin/sendmail/help/opt_DS.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_DS.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_DS.sv.html
|
||||
share/webmin/sendmail/help/opt_DS.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_DS.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_DaemonPortOptions.ca.html
|
||||
share/webmin/sendmail/help/opt_DaemonPortOptions.es.html
|
||||
share/webmin/sendmail/help/opt_DaemonPortOptions.html
|
||||
|
@ -198,6 +214,7 @@ share/webmin/sendmail/help/opt_ForwardPath.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_ForwardPath.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_ForwardPath.sv.html
|
||||
share/webmin/sendmail/help/opt_ForwardPath.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_ForwardPath.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_LogLevel.ca.html
|
||||
share/webmin/sendmail/help/opt_LogLevel.es.html
|
||||
share/webmin/sendmail/help/opt_LogLevel.fr.html
|
||||
|
@ -207,6 +224,7 @@ share/webmin/sendmail/help/opt_LogLevel.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_LogLevel.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_LogLevel.sv.html
|
||||
share/webmin/sendmail/help/opt_LogLevel.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_LogLevel.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_MatchGECOS.ca.html
|
||||
share/webmin/sendmail/help/opt_MatchGECOS.es.html
|
||||
share/webmin/sendmail/help/opt_MatchGECOS.html
|
||||
|
@ -220,6 +238,7 @@ share/webmin/sendmail/help/opt_MaxDaemonChildren.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_MaxDaemonChildren.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_MaxDaemonChildren.sv.html
|
||||
share/webmin/sendmail/help/opt_MaxDaemonChildren.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_MaxDaemonChildren.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_MaxHopCount.ca.html
|
||||
share/webmin/sendmail/help/opt_MaxHopCount.es.html
|
||||
share/webmin/sendmail/help/opt_MaxHopCount.html
|
||||
|
@ -233,6 +252,7 @@ share/webmin/sendmail/help/opt_MaxMessageSize.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_MaxMessageSize.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_MaxMessageSize.sv.html
|
||||
share/webmin/sendmail/help/opt_MaxMessageSize.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_MaxMessageSize.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_MaxQueueRunSize.ca.html
|
||||
share/webmin/sendmail/help/opt_MaxQueueRunSize.es.html
|
||||
share/webmin/sendmail/help/opt_MaxQueueRunSize.fr.html
|
||||
|
@ -242,6 +262,7 @@ share/webmin/sendmail/help/opt_MaxQueueRunSize.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_MaxQueueRunSize.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_MaxQueueRunSize.sv.html
|
||||
share/webmin/sendmail/help/opt_MaxQueueRunSize.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_MaxQueueRunSize.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_MinFreeBlocks.ca.html
|
||||
share/webmin/sendmail/help/opt_MinFreeBlocks.es.html
|
||||
share/webmin/sendmail/help/opt_MinFreeBlocks.fr.html
|
||||
|
@ -251,6 +272,7 @@ share/webmin/sendmail/help/opt_MinFreeBlocks.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_MinFreeBlocks.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_MinFreeBlocks.sv.html
|
||||
share/webmin/sendmail/help/opt_MinFreeBlocks.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_MinFreeBlocks.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_MinQueueAge.ca.html
|
||||
share/webmin/sendmail/help/opt_MinQueueAge.es.html
|
||||
share/webmin/sendmail/help/opt_MinQueueAge.fr.html
|
||||
|
@ -260,6 +282,7 @@ share/webmin/sendmail/help/opt_MinQueueAge.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_MinQueueAge.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_MinQueueAge.sv.html
|
||||
share/webmin/sendmail/help/opt_MinQueueAge.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_MinQueueAge.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_PostMasterCopy.ca.html
|
||||
share/webmin/sendmail/help/opt_PostMasterCopy.es.html
|
||||
share/webmin/sendmail/help/opt_PostMasterCopy.fr.html
|
||||
|
@ -269,6 +292,7 @@ share/webmin/sendmail/help/opt_PostMasterCopy.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_PostMasterCopy.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_PostMasterCopy.sv.html
|
||||
share/webmin/sendmail/help/opt_PostMasterCopy.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_PostMasterCopy.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_QueueDirectory.ca.html
|
||||
share/webmin/sendmail/help/opt_QueueDirectory.es.html
|
||||
share/webmin/sendmail/help/opt_QueueDirectory.fr.html
|
||||
|
@ -278,6 +302,7 @@ share/webmin/sendmail/help/opt_QueueDirectory.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_QueueDirectory.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_QueueDirectory.sv.html
|
||||
share/webmin/sendmail/help/opt_QueueDirectory.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_QueueDirectory.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_QueueLA.ca.html
|
||||
share/webmin/sendmail/help/opt_QueueLA.es.html
|
||||
share/webmin/sendmail/help/opt_QueueLA.fr.html
|
||||
|
@ -287,6 +312,7 @@ share/webmin/sendmail/help/opt_QueueLA.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_QueueLA.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_QueueLA.sv.html
|
||||
share/webmin/sendmail/help/opt_QueueLA.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_QueueLA.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_RefuseLA.ca.html
|
||||
share/webmin/sendmail/help/opt_RefuseLA.es.html
|
||||
share/webmin/sendmail/help/opt_RefuseLA.fr.html
|
||||
|
@ -296,6 +322,7 @@ share/webmin/sendmail/help/opt_RefuseLA.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_RefuseLA.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_RefuseLA.sv.html
|
||||
share/webmin/sendmail/help/opt_RefuseLA.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_RefuseLA.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_SendMimeErrors.ca.html
|
||||
share/webmin/sendmail/help/opt_SendMimeErrors.es.html
|
||||
share/webmin/sendmail/help/opt_SendMimeErrors.fr.html
|
||||
|
@ -305,6 +332,7 @@ share/webmin/sendmail/help/opt_SendMimeErrors.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_SendMimeErrors.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_SendMimeErrors.sv.html
|
||||
share/webmin/sendmail/help/opt_SendMimeErrors.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_SendMimeErrors.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuereturn.ca.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuereturn.es.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuereturn.fr.html
|
||||
|
@ -314,6 +342,7 @@ share/webmin/sendmail/help/opt_Timeout.queuereturn.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_Timeout.queuereturn.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuereturn.sv.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuereturn.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuereturn.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuewarn.ca.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuewarn.es.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuewarn.fr.html
|
||||
|
@ -323,6 +352,7 @@ share/webmin/sendmail/help/opt_Timeout.queuewarn.ru_RU.html
|
|||
share/webmin/sendmail/help/opt_Timeout.queuewarn.ru_SU.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuewarn.sv.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuewarn.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/opt_Timeout.queuewarn.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/help/opt_dmode.ca.html
|
||||
share/webmin/sendmail/help/opt_dmode.es.html
|
||||
share/webmin/sendmail/help/opt_dmode.html
|
||||
|
@ -338,6 +368,7 @@ share/webmin/sendmail/help/units.ru_RU.html
|
|||
share/webmin/sendmail/help/units.ru_SU.html
|
||||
share/webmin/sendmail/help/units.sv.html
|
||||
share/webmin/sendmail/help/units.zh_TW.Big5.html
|
||||
share/webmin/sendmail/help/units.zh_TW.UTF-8.html
|
||||
share/webmin/sendmail/images/access.gif
|
||||
share/webmin/sendmail/images/aliases.gif
|
||||
share/webmin/sendmail/images/attach.gif
|
||||
|
@ -370,8 +401,10 @@ share/webmin/sendmail/lang/de
|
|||
share/webmin/sendmail/lang/en
|
||||
share/webmin/sendmail/lang/es
|
||||
share/webmin/sendmail/lang/fr
|
||||
share/webmin/sendmail/lang/ja_JP.UTF-8
|
||||
share/webmin/sendmail/lang/ja_JP.euc
|
||||
share/webmin/sendmail/lang/ja_JP.jis
|
||||
share/webmin/sendmail/lang/ko_KR.UTF-8
|
||||
share/webmin/sendmail/lang/ko_KR.euc
|
||||
share/webmin/sendmail/lang/nl
|
||||
share/webmin/sendmail/lang/pl
|
||||
|
@ -382,7 +415,9 @@ share/webmin/sendmail/lang/sv
|
|||
share/webmin/sendmail/lang/tr
|
||||
share/webmin/sendmail/lang/uk_UA
|
||||
share/webmin/sendmail/lang/zh_CN
|
||||
share/webmin/sendmail/lang/zh_CN.UTF-8
|
||||
share/webmin/sendmail/lang/zh_TW.Big5
|
||||
share/webmin/sendmail/lang/zh_TW.UTF-8
|
||||
share/webmin/sendmail/list_access.cgi
|
||||
share/webmin/sendmail/list_aliases.cgi
|
||||
share/webmin/sendmail/list_cgs.cgi
|
||||
|
@ -434,3 +469,4 @@ share/webmin/sendmail/virtusers-lib.pl
|
|||
@dirrm share/webmin/sendmail/help
|
||||
@dirrm share/webmin/sendmail
|
||||
@dirrm share/examples/webmin/sendmail
|
||||
@dirrm etc/webmin/sendmail
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:42:42 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/sendmail.wbm.gz) = dd67c541915a7a8155903dcccf600b88a44d3d07
|
||||
RMD160 (webmin-modules-1.270/sendmail.wbm.gz) = ae771e506417f4c75d72602c4fbe3b69d596855a
|
||||
Size (webmin-modules-1.270/sendmail.wbm.gz) = 283084 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:43 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
DISTNAME= shell
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= shell
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module for executing shell commands
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 04:03:45 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
share/examples/webmin/shell/config
|
||||
share/webmin/shell/acl_security.pl
|
||||
share/webmin/shell/config
|
||||
share/webmin/shell/config.info
|
||||
share/webmin/shell/config.info.ca
|
||||
share/webmin/shell/config.info.es
|
||||
share/webmin/shell/config.info.fr
|
||||
share/webmin/shell/config.info.sk
|
||||
share/webmin/shell/defaultacl
|
||||
share/webmin/shell/images/icon.gif
|
||||
|
@ -17,7 +18,9 @@ share/webmin/shell/lang/en
|
|||
share/webmin/shell/lang/es
|
||||
share/webmin/shell/lang/fr
|
||||
share/webmin/shell/lang/hu
|
||||
share/webmin/shell/lang/ja_JP.UTF-8
|
||||
share/webmin/shell/lang/ja_JP.euc
|
||||
share/webmin/shell/lang/ko_KR.UTF-8
|
||||
share/webmin/shell/lang/ko_KR.euc
|
||||
share/webmin/shell/lang/ms
|
||||
share/webmin/shell/lang/pl
|
||||
|
@ -26,6 +29,7 @@ share/webmin/shell/lang/ru_SU
|
|||
share/webmin/shell/lang/sk
|
||||
share/webmin/shell/lang/uk_UA
|
||||
share/webmin/shell/lang/zh_TW.Big5
|
||||
share/webmin/shell/lang/zh_TW.UTF-8
|
||||
share/webmin/shell/log_parser.pl
|
||||
share/webmin/shell/module.info
|
||||
share/webmin/shell/shell-lib.pl
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 04:03:45 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/shell.wbm.gz) = 6da6357b38eb4349fb38d40bff37597f5210097b
|
||||
RMD160 (webmin-modules-1.270/shell.wbm.gz) = a5f554cd76636583c181c70399188e85733e987c
|
||||
Size (webmin-modules-1.270/shell.wbm.gz) = 56414 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
# $NetBSD: Makefile,v 1.2 2007/02/19 21:52:43 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
DISTNAME= sshd
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= sshd
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to setup the Secure Shell server
|
||||
|
||||
BROKEN= "Distfile broken"
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:43:00 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
share/examples/webmin/sshd/config
|
||||
share/webmin/sshd/CHANGELOG
|
||||
share/webmin/sshd/apply.cgi
|
||||
|
@ -20,16 +20,19 @@ share/webmin/sshd/config-suse-linux-8.2-*
|
|||
share/webmin/sshd/config-trustix-linux
|
||||
share/webmin/sshd/config-turbo-linux-7.0
|
||||
share/webmin/sshd/config-united-linux
|
||||
share/webmin/sshd/config-windows
|
||||
share/webmin/sshd/config.info
|
||||
share/webmin/sshd/config.info.ca
|
||||
share/webmin/sshd/config.info.de
|
||||
share/webmin/sshd/config.info.es
|
||||
share/webmin/sshd/config.info.fa
|
||||
share/webmin/sshd/config.info.fr
|
||||
share/webmin/sshd/config.info.ja_JP.UTF-8
|
||||
share/webmin/sshd/config.info.ja_JP.euc
|
||||
share/webmin/sshd/config.info.pl
|
||||
share/webmin/sshd/config.info.ru_RU
|
||||
share/webmin/sshd/config.info.ru_SU
|
||||
share/webmin/sshd/config.info.sk
|
||||
share/webmin/sshd/config.info.uk_UA
|
||||
share/webmin/sshd/edit_access.cgi
|
||||
share/webmin/sshd/edit_host.cgi
|
||||
|
@ -40,26 +43,31 @@ share/webmin/sshd/edit_sync.cgi
|
|||
share/webmin/sshd/edit_users.cgi
|
||||
share/webmin/sshd/help/access.ca.html
|
||||
share/webmin/sshd/help/access.es.html
|
||||
share/webmin/sshd/help/access.fa.html
|
||||
share/webmin/sshd/help/access.html
|
||||
share/webmin/sshd/help/access.hu.html
|
||||
share/webmin/sshd/help/access.pl.html
|
||||
share/webmin/sshd/help/chost.ca.html
|
||||
share/webmin/sshd/help/chost.es.html
|
||||
share/webmin/sshd/help/chost.fa.html
|
||||
share/webmin/sshd/help/chost.html
|
||||
share/webmin/sshd/help/chost.hu.html
|
||||
share/webmin/sshd/help/chost.pl.html
|
||||
share/webmin/sshd/help/ehost.ca.html
|
||||
share/webmin/sshd/help/ehost.es.html
|
||||
share/webmin/sshd/help/ehost.fa.html
|
||||
share/webmin/sshd/help/ehost.html
|
||||
share/webmin/sshd/help/ehost.hu.html
|
||||
share/webmin/sshd/help/ehost.pl.html
|
||||
share/webmin/sshd/help/host.ca.html
|
||||
share/webmin/sshd/help/host.es.html
|
||||
share/webmin/sshd/help/host.fa.html
|
||||
share/webmin/sshd/help/host.html
|
||||
share/webmin/sshd/help/host.hu.html
|
||||
share/webmin/sshd/help/host.pl.html
|
||||
share/webmin/sshd/help/hosts.ca.html
|
||||
share/webmin/sshd/help/hosts.es.html
|
||||
share/webmin/sshd/help/hosts.fa.html
|
||||
share/webmin/sshd/help/hosts.html
|
||||
share/webmin/sshd/help/hosts.hu.html
|
||||
share/webmin/sshd/help/hosts.pl.html
|
||||
|
@ -70,16 +78,19 @@ share/webmin/sshd/help/intro.hu.html
|
|||
share/webmin/sshd/help/intro.pl.html
|
||||
share/webmin/sshd/help/misc.ca.html
|
||||
share/webmin/sshd/help/misc.es.html
|
||||
share/webmin/sshd/help/misc.fa.html
|
||||
share/webmin/sshd/help/misc.html
|
||||
share/webmin/sshd/help/misc.hu.html
|
||||
share/webmin/sshd/help/misc.pl.html
|
||||
share/webmin/sshd/help/net.ca.html
|
||||
share/webmin/sshd/help/net.es.html
|
||||
share/webmin/sshd/help/net.fa.html
|
||||
share/webmin/sshd/help/net.html
|
||||
share/webmin/sshd/help/net.hu.html
|
||||
share/webmin/sshd/help/net.pl.html
|
||||
share/webmin/sshd/help/users.ca.html
|
||||
share/webmin/sshd/help/users.es.html
|
||||
share/webmin/sshd/help/users.fa.html
|
||||
share/webmin/sshd/help/users.html
|
||||
share/webmin/sshd/help/users.hu.html
|
||||
share/webmin/sshd/help/users.pl.html
|
||||
|
@ -102,12 +113,15 @@ share/webmin/sshd/lang/es
|
|||
share/webmin/sshd/lang/fa
|
||||
share/webmin/sshd/lang/fr
|
||||
share/webmin/sshd/lang/it
|
||||
share/webmin/sshd/lang/ja_JP.UTF-8
|
||||
share/webmin/sshd/lang/ja_JP.euc
|
||||
share/webmin/sshd/lang/pl
|
||||
share/webmin/sshd/lang/ru_RU
|
||||
share/webmin/sshd/lang/ru_SU
|
||||
share/webmin/sshd/lang/sk
|
||||
share/webmin/sshd/lang/uk_UA
|
||||
share/webmin/sshd/lang/zh_CN
|
||||
share/webmin/sshd/lang/zh_CN.UTF-8
|
||||
share/webmin/sshd/list_hosts.cgi
|
||||
share/webmin/sshd/log_parser.pl
|
||||
share/webmin/sshd/module.info
|
||||
|
@ -127,3 +141,4 @@ share/webmin/sshd/useradmin_update.pl
|
|||
@dirrm share/webmin/sshd/help
|
||||
@dirrm share/webmin/sshd
|
||||
@dirrm share/examples/webmin/sshd
|
||||
@dirrm etc/webmin/sshd
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:43:00 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/sshd.wbm.gz) = bb513e91aaf724dd49be21873f29db7b9a91fe2b
|
||||
RMD160 (webmin-modules-1.270/sshd.wbm.gz) = 6655c6f220f3261817b3752da402cb5ed2260fe7
|
||||
Size (webmin-modules-1.270/sshd.wbm.gz) = 68967 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
|
@ -1,16 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.2 2006/05/19 17:14:53 jlam Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
DISTNAME= status
|
||||
PKGNAME= wbm-${DISTNAME}-${WBM_VERSION}
|
||||
PKGREVISION= 1
|
||||
DIST_SUBDIR= webmin-modules-${WBM_VERSION}
|
||||
WBM_NAME= status
|
||||
|
||||
# The version is from the module.info file from the extracted distfile.
|
||||
WBM_VERSION= 1.270
|
||||
WBM_DEPEND_MODULES+= mailboxes
|
||||
|
||||
DEPENDS+= wbm-mailboxes>=1.270:../../sysutils/wbm-mailboxes
|
||||
|
||||
HOMEPAGE= http://www.webmin.com/standard.html
|
||||
COMMENT= Webmin module to view the status of services
|
||||
|
||||
.include "../../sysutils/webmin/wbm.mk"
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/05/16 15:43:17 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
share/examples/webmin/status/config
|
||||
share/webmin/status/CHANGELOG
|
||||
share/webmin/status/WEBMIN-STATUS-MIB.txt
|
||||
share/webmin/status/acl_security.pl
|
||||
share/webmin/status/alive-monitor.pl
|
||||
share/webmin/status/apache-monitor.pl
|
||||
share/webmin/status/backup_config.pl
|
||||
share/webmin/status/bind8-monitor.pl
|
||||
|
@ -12,7 +13,7 @@ share/webmin/status/config
|
|||
share/webmin/status/config-*-linux
|
||||
share/webmin/status/config-debian-linux
|
||||
share/webmin/status/config-debian-linux-3.0
|
||||
share/webmin/status/config-debian-linux-3.1
|
||||
share/webmin/status/config-debian-linux-3.1-*
|
||||
share/webmin/status/config-freebsd
|
||||
share/webmin/status/config-hpux
|
||||
share/webmin/status/config-netbsd
|
||||
|
@ -23,6 +24,7 @@ share/webmin/status/config.info.de
|
|||
share/webmin/status/config.info.es
|
||||
share/webmin/status/config.info.fa
|
||||
share/webmin/status/config.info.fr
|
||||
share/webmin/status/config.info.ja_JP.UTF-8
|
||||
share/webmin/status/config.info.ja_JP.euc
|
||||
share/webmin/status/config.info.nl
|
||||
share/webmin/status/config.info.pl
|
||||
|
@ -32,7 +34,10 @@ share/webmin/status/config.info.sv
|
|||
share/webmin/status/config.info.tr
|
||||
share/webmin/status/config.info.uk_UA
|
||||
share/webmin/status/config.info.zh_CN
|
||||
share/webmin/status/config.info.zh_CN.UTF-8
|
||||
share/webmin/status/config.info.zh_TW.Big5
|
||||
share/webmin/status/config.info.zh_TW.UTF-8
|
||||
share/webmin/status/consume-monitor.pl
|
||||
share/webmin/status/defaultacl
|
||||
share/webmin/status/delete_mons.cgi
|
||||
share/webmin/status/dhcpd-monitor.pl
|
||||
|
@ -43,6 +48,7 @@ share/webmin/status/edit_sched.cgi
|
|||
share/webmin/status/exec-monitor.pl
|
||||
share/webmin/status/feedback_files.pl
|
||||
share/webmin/status/file-monitor.pl
|
||||
share/webmin/status/ftp-monitor.pl
|
||||
share/webmin/status/hostsentry-monitor.pl
|
||||
share/webmin/status/http-monitor.pl
|
||||
share/webmin/status/iface-monitor.pl
|
||||
|
@ -64,7 +70,9 @@ share/webmin/status/lang/en
|
|||
share/webmin/status/lang/es
|
||||
share/webmin/status/lang/fa
|
||||
share/webmin/status/lang/fr
|
||||
share/webmin/status/lang/ja_JP.UTF-8
|
||||
share/webmin/status/lang/ja_JP.euc
|
||||
share/webmin/status/lang/ko_KR.UTF-8
|
||||
share/webmin/status/lang/ko_KR.euc
|
||||
share/webmin/status/lang/nl
|
||||
share/webmin/status/lang/pl
|
||||
|
@ -75,7 +83,9 @@ share/webmin/status/lang/sv
|
|||
share/webmin/status/lang/tr
|
||||
share/webmin/status/lang/uk_UA
|
||||
share/webmin/status/lang/zh_CN
|
||||
share/webmin/status/lang/zh_CN.UTF-8
|
||||
share/webmin/status/lang/zh_TW.Big5
|
||||
share/webmin/status/lang/zh_TW.UTF-8
|
||||
share/webmin/status/load-monitor.pl
|
||||
share/webmin/status/log_parser.pl
|
||||
share/webmin/status/mailq-monitor.pl
|
||||
|
@ -94,8 +104,10 @@ share/webmin/status/postgresql-monitor.pl
|
|||
share/webmin/status/proc-monitor.pl
|
||||
share/webmin/status/proftpd-monitor.pl
|
||||
share/webmin/status/qmailadmin-monitor.pl
|
||||
share/webmin/status/query-monitor.pl
|
||||
share/webmin/status/raid-monitor.pl
|
||||
share/webmin/status/refresh.cgi
|
||||
share/webmin/status/rssh-monitor.pl
|
||||
share/webmin/status/samba-monitor.pl
|
||||
share/webmin/status/save_mon.cgi
|
||||
share/webmin/status/save_sched.cgi
|
||||
|
@ -131,3 +143,4 @@ share/webmin/status/xinetd-monitor.pl
|
|||
@dirrm share/webmin/status/images
|
||||
@dirrm share/webmin/status
|
||||
@dirrm share/examples/webmin/status
|
||||
@dirrm etc/webmin/status
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2006/05/16 15:43:17 jlam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2007/04/21 05:23:05 obache Exp $
|
||||
|
||||
SHA1 (webmin-modules-1.270/status.wbm.gz) = 6e0033716c7588f483a895c92747e15e42c5bcc6
|
||||
RMD160 (webmin-modules-1.270/status.wbm.gz) = 390f7173ceb5d81bf311385a745c9ef6577fb58f
|
||||
Size (webmin-modules-1.270/status.wbm.gz) = 81785 bytes
|
||||
SHA1 (webmin-1.340.tar.gz) = 530bb583824688f24fc4c6d0b8522d43c7f5bb96
|
||||
RMD160 (webmin-1.340.tar.gz) = 5f4cfe51e052c2f46dc7f6813e74fb0e5aebff05
|
||||
Size (webmin-1.340.tar.gz) = 15851601 bytes
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue