Leaked source code of windows server 2003
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.

54 lines
1.0 KiB

  1. #---------------------------------------------------------------------
  2. package SP;
  3. #
  4. # Copyright (c) Microsoft Corporation. All rights reserved.
  5. #
  6. # Version:
  7. # 1.00 1/17/2002 JeremyD: start with the basics
  8. #---------------------------------------------------------------------
  9. use strict;
  10. use vars qw($VERSION);
  11. $VERSION = '1.00';
  12. sub sp_skus {
  13. #if (lc $ENV{_BUILDARCH} eq 'x86' and lc $ENV{_BUILDTYPE} eq 'fre') {
  14. # return grep {-e "$ENV{RAZZLETOOLPATH}\\postbuildscripts\\svcpack\\gold\\$_-$ENV{LANG}.txt" }
  15. # ('per', 'pro');
  16. #}
  17. return;
  18. }
  19. 1;
  20. __END__
  21. =head1 NAME
  22. SP - utility module for service pack scripts
  23. =head1 SYNOPSIS
  24. use SP;
  25. for my $sku (SP::sp_skus()) {
  26. ...
  27. }
  28. =head1 DESCRIPTION
  29. Doesn't do much yet. Just returns the list of valid skus to make
  30. slipstream media for. Needs LANG to be set, calling script should be
  31. in the template.
  32. =head1 AUTHOR
  33. JeremyD
  34. =head1 COPYRIGHT
  35. Copyright (c) Microsoft Corporation. All rights reserved.
  36. =cut