From 63326e81a339a762e08d5303facf65cc9cea9b87 Mon Sep 17 00:00:00 2001 From: attilio Date: Sat, 9 Mar 2013 12:45:36 +0000 Subject: Garbage collect NWFS and NCP bits which are now completely disconnected from the tree since few months. This patch is not targeted for MFC. --- share/examples/nwclient/dot.nwfsrc | 78 ---------------------------------- share/examples/nwclient/nwfs.sh.sample | 34 --------------- 2 files changed, 112 deletions(-) delete mode 100644 share/examples/nwclient/dot.nwfsrc delete mode 100644 share/examples/nwclient/nwfs.sh.sample (limited to 'share/examples') diff --git a/share/examples/nwclient/dot.nwfsrc b/share/examples/nwclient/dot.nwfsrc deleted file mode 100644 index 03bc1d0..0000000 --- a/share/examples/nwclient/dot.nwfsrc +++ /dev/null @@ -1,78 +0,0 @@ -# $FreeBSD$ -# -# Example for .nwfsrc file -# -# ncplib lookups configuration files in next order: -# 1. ~/.nwfsrc -# 2. /etc/nwfs.conf - if this file found it will -# override values with same keys from user files. -# -# -# This file consist of a set of sections. Each section started by section name -# surrounded by square brackets: -# [section_name] -# -# End of the section marked either by new section or by the end of file. -# Each section can contain zero or more parameters: -# [section_name] -# key=value -# -# where 'key' is a represents parameter name and 'value' a value assigned -# to this parameter. -# -# NetWare library uses next forms of section names: -# [SERVER] -# [SERVER:USER] -# [SERVER:QUEUE] -# -# When user issues any ncp* command that requires create of new connection -# to a NetWare server, library function lookups for parameters in the -# corresponding section. First it looks in the [SERVER] section and then in -# the [SERVER:USER] section. Please note that server and user names should be -# in the upper case. -# - -# Following parameters are valid for [SERVER] or [SERVER:USER] section: -[BHOME:SUPERVISOR] -# if you don't use password leave value empty -password=I_DONT_TELL_YOU - -# how many retries before error, default 10 -retry_count=10 - -# timeout for request to complete -timeout=5 - -# access mode to connection, default 0700 -access_mode=0700 - -# signature level, default 0 - no signatures -sig_level=0 - -# force bindery login, default no -bindery=no - -# default print queue for user, default is none -# print_queue=QE_BJ - - -[ANOTHERSERVER:PLAINUSER] -# in this case user have an empty password -password= - -# Defaults for printer queues defined as [SERVER:QUEUE] -# communication parameters taken from [SERVER:USER] section -# see man ncprint(1) for queue parameters description -# note: if any banner related option is specified, banner will be printed. -[BHOME:QE_BJ] -#path_name=/etc -#file_name=passwd -#banner_name=My Job -#job_desc=Printing from FreeBSD - -#lines=66 -#rows=80 -copies=1 -tab_size=8 -no_form_feed=yes -#form_number=0 diff --git a/share/examples/nwclient/nwfs.sh.sample b/share/examples/nwclient/nwfs.sh.sample deleted file mode 100644 index cb8b631..0000000 --- a/share/examples/nwclient/nwfs.sh.sample +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Location: /usr/local/etc/rc.d/nwfs.sh -# -# Simple script to mount NetWare volumes at startup. -# It assumes that all mount points described in fstab file and password -# entries listed in /root/.nwfsrc file. See mount_nwfs(8) for details. -# - -mount=/sbin/mount -umount=/sbin/umount -HOME=/root; export HOME -vols="/nw/sys /nw/vol1" - -if [ "x$1" = "x" -o "x$1" = "xstart" ]; then - echo -n "Mounting NetWare volumes: " - for vol in ${vols}; do - $mount $vol - echo -n "$vol " - done - echo "Done" -elif [ "x$1" = "xstop" ]; then - echo -n "Unmounting NetWare mount points: " - for vol in ${vols}; do - $umount $vol - echo -n "$vol " - done - echo "Done" -else - echo "Unknown command $1" -fi - -- cgit v1.1