ソースを参照

Changed documentation and help, as -f only applies during remove.

Adam Heath 25 年 前
コミット
5d163e4d3d
共有4 個のファイルを変更した9 個の追加4 個の削除を含む
  1. 5 0
      ChangeLog
  2. 2 0
      debian/changelog
  3. 0 2
      scripts/update-rc.d.8
  4. 2 2
      scripts/update-rc.d.pl

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+Sun Dec 24 05:24:23 CST 2000 Adam Heath <doogie@debian.org>
+
+  * scripts/update-rc.d: Changed documentation and help, as -f only
+    applies during remove.
+
 Sun Dec 24 05:10:29 CST 2000 Adam Heath <doogie@debian.org>
 
   * main/main.c: Added a --force-all option.

+ 2 - 0
debian/changelog

@@ -1,5 +1,7 @@
 dpkg (1.8.0) unstable; urgency=low
 
+  * update-rc.d: Changed documentation and help, as -f only applies during
+    remove.  Closes: #55049.
   * Added a --force-all option.  Closes: #61354.
   * Format help string for --abort-after like other option help strings.
     Closes: #62464.

+ 0 - 2
scripts/update-rc.d.8

@@ -11,13 +11,11 @@ update\-rc.d \- install and remove System-V style init script links
 .HP
 .B update-rc.d
 .RI [ -n ]
-.RI [ -f ]
 .IB name " defaults"
 .RI [ NN " | " NN-start " " NN-stop ]
 .HP
 .B update-rc.d
 .RI [ -n ]
-.RI [ -f ]
 .I name
 .BR start | stop
 .IR "NN runlevel runlevel " ...

+ 2 - 2
scripts/update-rc.d.pl

@@ -15,8 +15,8 @@ sub usage {
 	print STDERR "update-rc.d: error: @_\n" if ($#_ >= 0);
 	print STDERR <<EOF;
 usage: update-rc.d [-n] [-f] <basename> remove
-       update-rc.d [-n] [-f] <basename> defaults [NN | sNN kNN]
-       update-rc.d [-n] [-f] <basename> start|stop NN runlvl runlvl .  ...
+       update-rc.d [-n] <basename> defaults [NN | sNN kNN]
+       update-rc.d [-n] <basename> start|stop NN runlvl runlvl .  ...
 		-n: not really
 		-f: force
 EOF