fix mkdir call of $TFTPD_DATA_DIR_/pxelinux.cfg
authorMichael Prokop <mika@grml.org>
Thu, 15 Mar 2007 16:32:37 +0000 (17:32 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 15 Mar 2007 16:32:37 +0000 (17:32 +0100)
debian/changelog
grml-terminalserver

index 6c162b5..1b5efe3 100644 (file)
@@ -1,6 +1,6 @@
 grml-terminalserver (0.84) unstable; urgency=low
 
-  * Building new package with changes from gebi (thanks!):
+  [gebi]
     - change from in.tftpd to atftpd [Closes: issue143]
     - set max initrd size to 24000kB [Closes: issue142]
     - remove libuclibc0 and discover-data from depends
@@ -10,6 +10,8 @@ grml-terminalserver (0.84) unstable; urgency=low
     - merge linuxrc from outside of terminalserver
     - fix error to not only use a running kernel
     - updated todo
+  [mika]
+    - fix mkdir call of $TFTPD_DATA_DIR_/pxelinux.cfg
 
  -- Michael Prokop <mika@grml.org>  Thu, 15 Mar 2007 17:19:14 +0100
 
index 3303df4..0cb1883 100755 (executable)
@@ -194,7 +194,7 @@ function createTftpConf
 {
   removeTftpConf
 
-  execute "mkdir $TFTPD_DATA_DIR_/pxelinux.cfg" die
+  execute "mkdir -p $TFTPD_DATA_DIR_/pxelinux.cfg" die
   execute "install -m 644 /usr/lib/syslinux/pxelinux.0 $TFTPD_DATA_DIR_" die
   execute "install -m 644 $PATH_/minirt26.gz $TFTPD_DATA_DIR_" die
   execute "install -m 644 $KERNEL_IMAGE_ $TFTPD_DATA_DIR_/linux26" die