summaryrefslogtreecommitdiffstats
path: root/initramfs/distro-specs/suse/functions-10.0
diff options
context:
space:
mode:
Diffstat (limited to 'initramfs/distro-specs/suse/functions-10.0')
-rw-r--r--initramfs/distro-specs/suse/functions-10.036
1 files changed, 0 insertions, 36 deletions
diff --git a/initramfs/distro-specs/suse/functions-10.0 b/initramfs/distro-specs/suse/functions-10.0
deleted file mode 100644
index 5f7916d1..00000000
--- a/initramfs/distro-specs/suse/functions-10.0
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright (c) 2003 - 2006 - RZ Uni Freiburg
-# Copyright (c) 2006, 2007 - OpenSLX GmbH
-#
-# This program/file is free software distributed under the GPL version 2.
-# See http://openslx.org/COPYING
-#
-# If you have any feedback please consult http://openslx.org/feedback and
-# send your feedback to feedback@openslx.org
-#
-# General information about OpenSLX can be found under http://openslx.org
-#
-# Configuration functions for SuSE 10.0 which differ from functions defined
-# in general SuSE base definitions ... General changes should be done there,
-# version specific changes for the version 10.0 go here.
-
-# secure shell service
-config_sshd () {
-if [ "x$start_sshd" = "xyes" ] ; then
- if [ -f /mnt/etc/${D_INITDIR}/sshd ] ; then
- testmkd /mnt/var/lib/sshd
- testmkd /mnt/var/lib/empty
- if ! strinfile "sshd:" /mnt/etc/passwd ; then
- echo -e "sshd:x:71:65::/var/run/sshd:/bin/false" \
- >>/mnt/etc/passwd
- echo -e "sshd:!:13099:0:99999:7:::" >>/mnt/etc/shadow
- fi
- rllinker "sshd" 25 10
- else
- error "$df_errsshd" nonfatal
- fi
-fi
-}
-# Xorg variable settings. Lots of stuff changes for newer Xorg servers
-displayvars () {
-synapticsdrv="/usr/X11R6/lib/modules/input/synaptics_drv.o"
-}