Changeset 1214


Ignore:
Timestamp:
01/15/12 11:06:58 (4 months ago)
Author:
tschmitt
Message:
  • debian/control: tftpd-hpa Paketname korrigiert.
  • tftpd-hpa-Konfigurationsdatei in Ubuntuversion ergänzt.
Location:
main/linuxmuster-linbo/branches/testing
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • main/linuxmuster-linbo/branches/testing/debian/changelog

    r1181 r1214  
     1linuxmuster-linbo (2.0.3-0) unstable; urgency=low 
     2 
     3  * added tftpd-hpa config template for ubuntu. 
     4 
     5 -- Thomas Schmitt <schmitt@lmz-bw.de>  Sun, 15 Jan 2011 10:55:34 +0100 
     6 
    17linuxmuster-linbo (2.0.2-0) unstable; urgency=low 
    28 
  • main/linuxmuster-linbo/branches/testing/debian/control

    r1161 r1214  
    1717Package: linuxmuster-linbo 
    1818Architecture: all 
    19 Depends: rsync (>= 2.6.9), bittorrent, dropbear, ssh, sed, screen, mkisofs, dosfstools, linuxmuster-base (>= 1.4.36), tftpd-hpa, udpcast, zip, mbr, etherwake 
     19Depends: rsync (>= 2.6.9), bittorrent, dropbear, ssh, sed, screen, mkisofs, dosfstools, linuxmuster-base (>= 1.4.36), tftp-hpa, udpcast, zip, mbr, etherwake 
    2020Suggests: dhcp-server | dhcp3-server 
    2121Recommends: wodim 
  • main/linuxmuster-linbo/branches/testing/debian/postinst

    r1167 r1214  
    2727LINBODIR=/var/linbo 
    2828DISTCONF=/usr/share/linuxmuster/config/dist.conf 
     29[ -d /usr/share/doc/ubuntu-standard ] && UBUNTU=yes 
    2930 
    3031case "$1" in 
     
    229230 # create tftpd-hpa configs if necessary 
    230231 tpldir="/usr/share/linuxmuster-linbo/templates" 
    231  tpl="$tpldir/tftpd-hpa.default" 
     232 if [ -n "$UBUNTU" ]; then 
     233  tpl="$tpldir/tftpd-hpa.default.ubuntu" 
     234 else 
     235  tpl="$tpldir/tftpd-hpa.default" 
     236 fi 
    232237 conf="/etc/default/tftpd-hpa" 
    233238 if ! grep -q "$LINBODIR" "$conf"; then 
     
    252257   /etc/init.d/openbsd-inetd restart 
    253258  fi 
    254   /etc/init.d/tftpd-hpa restart 
     259  if [ -n "$UBUNTU" ]; then 
     260   restart tftpd-hpa 
     261  else 
     262   /etc/init.d/tftpd-hpa restart 
     263  fi 
    255264 fi 
    256265 
Note: See TracChangeset for help on using the changeset viewer.