saving uncommitted changes in /etc prior to emerge run
This commit is contained in:
18
init.d/dmesg
Executable file
18
init.d/dmesg
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/sbin/runscript
|
||||
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
||||
# Released under the 2-clause BSD license.
|
||||
|
||||
description="Set the dmesg level for a cleaner boot"
|
||||
|
||||
depend()
|
||||
{
|
||||
before dev modules
|
||||
keyword -lxc -prefix -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
if [ -n "$dmesg_level" ]; then
|
||||
dmesg -n$dmesg_level
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user