OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.0 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../vserver/pkg_linux_post.conf
  5. # Copyright (C) 2006 - 2008 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. # Copyright (C) 1998 - 2003 Clifford Wolf
  8. #
  9. # More information can be found in the files COPYING and README.
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; version 2 of the License. A copy of the
  14. # GNU General Public License can be found in the file COPYING.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. pkg_ctx_confdir=$base/package/*/vserver
  17. # tempdir
  18. pkg_ctx_tempdir=`mktemp -d`
  19. #hook_add postpatch 6 "rm -rf $pkg_ctx_tempdir"
  20. # detect /best fit/ linux patch
  21. pkg_ctx_lxver=${ver//-/.}.
  22. pkg_ctx_patch=
  23. while [ "$pkg_ctx_lxver" != "${pkg_ctx_lxver%.*}" -a -z "$pkg_ctx_patch" ]; do
  24. pkg_ctx_lxver=${pkg_ctx_lxver%.*}
  25. pkg_ctx_patch=`match_source_file -p " patch-${pkg_ctx_lxver}[^ ]*-vs[^ q].*.diff" vserver | head -n1`
  26. done
  27. [ -z "$pkg_ctx_patch" ] && abort "no vserver patch found for linux $ver"
  28. # find supplementary fixes
  29. pkg_ctx_fixes_pattern="`basename ${pkg_ctx_patch%.diff} .diff`[.].*[.]diff"
  30. pkg_ctx_fixes="`match_source_file -p " ${pkg_ctx_fixes_pattern}" vserver`"
  31. # prepare vserver patch
  32. pkg_ctx_ver=$( echo $pkg_ctx_patch | sed -n -e 's,.*-vs\(.*\).diff.*,\1,p' )
  33. # remove extraversion from patch and inject in lx_extraversion by hand
  34. [[ ${pkg_ctx_patch} == *.bz2 ]] && x=bzcat || x=cat
  35. $x ${pkg_ctx_patch} | gawk "
  36. BEGIN { FS=\"[ /\t]\"
  37. removethis=0
  38. }
  39. /^--- / {
  40. if ( \$3 == \"Makefile\" )
  41. removethis=1
  42. else
  43. removethis=0
  44. }
  45. /.*/ {
  46. if ( removethis != 1 )
  47. print
  48. }
  49. " > $pkg_ctx_tempdir/vserver-${pkg_ctx_ver}.patch
  50. echo_status "Including VServer ($pkg_ctx_ver) support."
  51. hook_add postpatch 5 "lx_extraversion=\$lx_extraversion-vs${pkg_ctx_ver}"
  52. var_append patchfiles ' ' $pkg_ctx_tempdir/vserver-$pkg_ctx_ver.patch
  53. [ -n "${pkg_ctx_fixes}" ] && var_append patchfiles ' ' ${pkg_ctx_fixes}
  54. if [ "$SDECFG_PKG_VSERVER_QUOTA" = "1" ]; then
  55. pkg_ctx_lxver=$ver.
  56. pkg_vquota_patch=
  57. if [[ $ver == 2.4.* ]]; then
  58. # prepare vquota patch
  59. while [ "$pkg_ctx_lxver" != "${pkg_ctx_lxver%.*}" -a -z "$pkg_quota_patch" ]; do
  60. pkg_ctx_lxver=${pkg_ctx_lxver%.*}
  61. pkg_vquota_patch=`match_source_file -p " patch-${pkg_ctx_lxver}[^ ]*-q.*.diff" vserver | head -n 1`
  62. done
  63. fi
  64. if [ -n "$pkg_vquota_patch" ]; then
  65. pkg_vquota_ver=$( echo $pkg_vquota_patch | sed -n -e 's,.*-q\(.*\).diff.bz2,\1,p' )
  66. [[ ${pkg_vquota_patch} == *.bz2 ]] && x=bzcat || x=cat
  67. $x $pkg_vquota_patch \
  68. > $pkg_ctx_tempdir/vquota-$pkg_vquota_ver.patch
  69. echo_status "Including Per Context Quota/Disk Limits ($pkg_vquota_ver) support."
  70. var_append patchfiles ' ' $pkg_ctx_tempdir/vquota-$pkg_vquota_ver.patch
  71. var_append lx_confscripts ' ' $pkg_ctx_confdir/kernel-vquota.conf.sh
  72. else
  73. echo_status "No Per Context Quota/Disk Limits support available for Linux ${pkg_ctx_lxver}"
  74. fi
  75. fi