Skip to content
Snippets Groups Projects
Commit a335e812 authored by Christopher Spinrath's avatar Christopher Spinrath
Browse files

liphook: call hook scripts from lipstick (e.g. lipnsa)

parent d94ea904
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
PREREQ="" PREREQ=""
DESCRIPTION="lip specific stuff" DESCRIPTION="lip specific stuff"
LIP_HOOKS="/cdrom/initrd_hooks/"
prereqs() prereqs()
{ {
...@@ -26,6 +27,11 @@ cp /lip/no-bootloader-icon/ubiquity-kdeui.desktop /root/usr/share/applications/k ...@@ -26,6 +27,11 @@ cp /lip/no-bootloader-icon/ubiquity-kdeui.desktop /root/usr/share/applications/k
cp /lip/no-bootloader-icon/ubiquity-kdeui-no-bootloader.desktop /root/usr/share/applications/kde4/ cp /lip/no-bootloader-icon/ubiquity-kdeui-no-bootloader.desktop /root/usr/share/applications/kde4/
#TODO: install ubiquity here? #TODO: install ubiquity here?
for hook in $(find "${LIP_HOOKS}" -name "*.hook.sh"); do
log_begin_msg "Executing lip hook ${hook}"
/bin/sh "${hook}"
log_end_msg
done
log_end_msg log_end_msg
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment