several minor fixes before stable
This commit is contained in:
parent
4741b53b05
commit
257354b8cb
|
|
@ -1,7 +1,7 @@
|
|||
#+TODO: TODO IN-PROGRESS | DONE
|
||||
|
||||
|
||||
|
||||
* TODO Chec boot_beep (check config files and all!!!)
|
||||
* DONE remove packages_list from /home/devuan
|
||||
* DONE Amend motd
|
||||
|
||||
* DONE amend isolinux_overlay/isolinux.cfg
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
## configuration file for devuan-live blend -- ASCII release
|
||||
|
||||
|
||||
version="2.0.0-rc"
|
||||
version="2.0.0"
|
||||
|
||||
|
||||
##
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -0,0 +1,32 @@
|
|||
##
|
||||
## The name of the file which will contain the PID of boot_beep.sh
|
||||
##
|
||||
|
||||
BB_TMPFILE=/tmp/boot_beep.pid
|
||||
|
||||
##
|
||||
## the path to boot_beep.sh
|
||||
##
|
||||
|
||||
BB_SCRIPTFILE=/etc/boot_beep
|
||||
|
||||
##
|
||||
## the process(es) to look for. This pattern will be given to
|
||||
## "grep -E"...
|
||||
##
|
||||
|
||||
BB_PROCESS="(getty|login)"
|
||||
|
||||
##
|
||||
## Set whether beeps are emitted during boot
|
||||
##
|
||||
##
|
||||
|
||||
BB_BEEP_BOOT=FALSE
|
||||
|
||||
##
|
||||
## Set check interval
|
||||
##
|
||||
##
|
||||
|
||||
BB_INTERVAL=1
|
||||
|
|
@ -278,8 +278,11 @@ rm -f /etc/popularity-contest.conf
|
|||
# echo "needs_root_rights=yes" >> /etc/X11/Xwrapper.config
|
||||
|
||||
# Disable contrib and non-free after installing firmware.
|
||||
sed -i 's/contrib//g' /etc/apt/sources.list
|
||||
sed -i 's/non-free//g' /etc/apt/sources.list
|
||||
sed -i 's/ contrib//g' /etc/apt/sources.list
|
||||
sed -i 's/ non-free//g' /etc/apt/sources.list
|
||||
|
||||
## Disable updates
|
||||
sed -i '/-updates/s/^/## /g' /etc/apt/sources.list
|
||||
|
||||
## insert service boot_beep
|
||||
insserv boot_beep
|
||||
|
|
@ -328,7 +331,7 @@ dpkg -i \$(find ./ -type f -name '*.deb')
|
|||
|
||||
|
||||
## package list
|
||||
dpkg -l | awk '/^ii/ { print $2 " " $3 }' > /home/${username}/package_list
|
||||
#dpkg -l | awk '/^ii/ { print $2 " " $3 }' > /home/${username}/package_list
|
||||
|
||||
##apt-get update
|
||||
apt-get clean
|
||||
|
|
|
|||
Loading…
Reference in New Issue