forked from pool/aaa_base
Accepting request 56193 from Base:System
Accepted submit request 56193 from user WernerFink OBS-URL: https://build.opensuse.org/request/show/56193 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aaa_base?expand=0&rev=235
This commit is contained in:
commit
12b4ed234c
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 16 12:35:29 CET 2010 - werner@suse.de
|
||||||
|
|
||||||
|
- Touch /etc/init.d/after.local and /etc/init.d/before.local (bnc#659206)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 15 12:21:12 CET 2010 - ro@suse.de
|
||||||
|
|
||||||
|
- boot.localfs: do not abort wait for udev just because
|
||||||
|
/dev/.udev/queue does not exist (bnc#656028)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 7 17:57:02 CET 2010 - werner@suse.de
|
Tue Dec 7 17:57:02 CET 2010 - werner@suse.de
|
||||||
|
|
||||||
|
47
aaa_base.pre
47
aaa_base.pre
@ -118,6 +118,8 @@ done
|
|||||||
#
|
#
|
||||||
for LOCALFILE in /root/bin/cron.daily.local \
|
for LOCALFILE in /root/bin/cron.daily.local \
|
||||||
/etc/init.d/boot.local \
|
/etc/init.d/boot.local \
|
||||||
|
/etc/init.d/after.local \
|
||||||
|
/etc/init.d/before.local \
|
||||||
/etc/init.d/halt.local \
|
/etc/init.d/halt.local \
|
||||||
/usr/sbin/usradd.local \
|
/usr/sbin/usradd.local \
|
||||||
/usr/sbin/usrdel.local \
|
/usr/sbin/usrdel.local \
|
||||||
@ -151,7 +153,7 @@ echo "#! /bin/sh
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany. All rights reserved.
|
# Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany. All rights reserved.
|
||||||
#
|
#
|
||||||
# Author: Werner Fink <werner@suse.de>, 1996
|
# Author: Werner Fink, 1996
|
||||||
# Burchard Steinbild, 1996
|
# Burchard Steinbild, 1996
|
||||||
#
|
#
|
||||||
# /etc/init.d/boot.local
|
# /etc/init.d/boot.local
|
||||||
@ -169,7 +171,7 @@ echo "#! /bin/sh
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany. All rights reserved.
|
# Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany. All rights reserved.
|
||||||
#
|
#
|
||||||
# Author: Werner Fink <werner@suse.de>, 1998
|
# Author: Werner Fink, 1998
|
||||||
# Burchard Steinbild, 1998
|
# Burchard Steinbild, 1998
|
||||||
#
|
#
|
||||||
# /etc/init.d/halt.local
|
# /etc/init.d/halt.local
|
||||||
@ -183,6 +185,47 @@ echo "#! /bin/sh
|
|||||||
test -e /etc/init.d/halt.local || mv /etc/init.d/halt.local.new /etc/init.d/halt.local
|
test -e /etc/init.d/halt.local || mv /etc/init.d/halt.local.new /etc/init.d/halt.local
|
||||||
rm -f /etc/init.d/halt.local.new
|
rm -f /etc/init.d/halt.local.new
|
||||||
chmod 744 /etc/init.d/halt.local
|
chmod 744 /etc/init.d/halt.local
|
||||||
|
echo "#! /bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010 SuSE LINUX Products GmbH, Germany. All rights reserved.
|
||||||
|
#
|
||||||
|
# Author: Werner Fink, 2010
|
||||||
|
#
|
||||||
|
# /etc/init.d/before.local
|
||||||
|
#
|
||||||
|
# script with local commands to be executed from init before executing
|
||||||
|
# any script of a runlevel.
|
||||||
|
#
|
||||||
|
# Here you should add things, that should happen directly before entering
|
||||||
|
# a runlevel. Common environment variables for this are:
|
||||||
|
# RUNLEVEL -- The current system runlevel.
|
||||||
|
# PREVLEVEL -- The previous runlevel (useful after a runlevel switch).
|
||||||
|
#
|
||||||
|
" > /etc/init.d/before.local.new
|
||||||
|
test -e /etc/init.d/before.local || mv /etc/init.d/before.local.new /etc/init.d/before.local
|
||||||
|
rm -f /etc/init.d/before.local.new
|
||||||
|
chmod 744 /etc/init.d/before.local
|
||||||
|
echo "#! /bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010 SuSE LINUX Products GmbH, Germany. All rights reserved.
|
||||||
|
#
|
||||||
|
# Author: Werner Fink, 2010
|
||||||
|
#
|
||||||
|
# /etc/init.d/after.local
|
||||||
|
#
|
||||||
|
# script with local commands to be executed from init after all scripts
|
||||||
|
# of a runlevel have been executed.
|
||||||
|
#
|
||||||
|
# Here you should add things, that should happen directly after
|
||||||
|
# runlevel has been reached. Common environment
|
||||||
|
# variables for this are:
|
||||||
|
# RUNLEVEL -- The current system runlevel.
|
||||||
|
# PREVLEVEL -- The previous runlevel (useful after a runlevel switch).
|
||||||
|
#
|
||||||
|
" > /etc/init.d/after.local.new
|
||||||
|
test -e /etc/init.d/after.local || mv /etc/init.d/after.local.new /etc/init.d/after.local
|
||||||
|
rm -f /etc/init.d/after.local.new
|
||||||
|
chmod 744 /etc/init.d/after.local
|
||||||
mkdir -p /etc
|
mkdir -p /etc
|
||||||
for LINK in /usr/X11R6/lib/X11 /var/X11R6/lib/fonts /usr/lib/mgetty+sendfax \
|
for LINK in /usr/X11R6/lib/X11 /var/X11R6/lib/fonts /usr/lib/mgetty+sendfax \
|
||||||
/usr/man/cat? /usr/X11R6/man/cat? /usr/openwin/man/cat? /usr/lib/news ; do
|
/usr/man/cat? /usr/X11R6/man/cat? /usr/openwin/man/cat? /usr/lib/news ; do
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:18ec9f5853df52abe16a4471b8b2e5e9b1c68ee9a07f8c1df3181ce965ba8984
|
oid sha256:8adba24cfa8a2855e20629560af64b328f70b2a2774550c38c8bfa02356bff57
|
||||||
size 81734
|
size 81729
|
||||||
|
Loading…
Reference in New Issue
Block a user