Bladeren bron

- add support for recognizing package class in old 1.3 Distribution headers during building - start rc.openpkg jobs in background and as soon as possible (priority 0)

Ralf S. Engelschall 21 jaren geleden
bovenliggende
commit
6ce1cae7d7
4 gewijzigde bestanden met toevoegingen van 9 en 5 verwijderingen
  1. 2 0
      openpkg/HISTORY
  2. 1 1
      openpkg/openpkg.spec
  3. 5 3
      openpkg/rc.openpkg
  4. 1 1
      openpkg/rpmmacros

+ 2 - 0
openpkg/HISTORY

@@ -2,6 +2,8 @@
 2004
 ====
 
+20040609 add support for recognizing package class in old 1.3 Distribution headers during building
+20040609 start rc.openpkg jobs in background and as soon as possible (priority 0)
 20040607 workaround NetBSD gcc 2.95 optimization problems by not using -O2 there
 20040607 upgrade to latest GNU shtool snapshot to fix platform detection under NetBSD 1.6.2-STABLE
 20040604 revise the stderr processing of run-command processor in case of -d/--debug

+ 1 - 1
openpkg/openpkg.spec

@@ -39,7 +39,7 @@
 #   o any cc(1)
 
 #   the package version/release
-%define       V_openpkg  20040607
+%define       V_openpkg  20040609
 
 #   the used software versions
 %define       V_rpm      4.2.1

+ 5 - 3
openpkg/rc.openpkg

@@ -19,12 +19,14 @@
 %info -o
     @l_prefix@/bin/openpkg uuid info
 
-%start
+%start -p0
     rcService openpkg enable yes || exit 0
-    @l_prefix@/bin/openpkg uuid update >/dev/null 2>&1 || true
+    #   update UUID information (in background to not slow down boot sequences)
+    (nohup @l_prefix@/bin/openpkg uuid update </dev/null >/dev/null 2>&1 &) >/dev/null 2>&1
 
-%daily
+%daily -p0
     rcService openpkg enable yes || exit 0
+    #   update UUID information
     @l_prefix@/bin/openpkg uuid update >/dev/null 2>&1 || true
 
 %env -p0

File diff suppressed because it is too large
+ 1 - 1
openpkg/rpmmacros