diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2011-12-21 17:44:38 -0800 |
---|---|---|
committer | Stephen Hemminger <shemminger@vyatta.com> | 2011-12-21 17:53:33 -0800 |
commit | 2c24b7ff7156bf2fbf6c67e30c0407d5a71c4449 (patch) | |
tree | ab8234df113581f1db9f89d27e998bb6b76cc948 | |
parent | 537585b5e1a7d73f7c88b7726d0c1f112329bea3 (diff) | |
download | vyatta-cfg-quagga-2c24b7ff7156bf2fbf6c67e30c0407d5a71c4449.tar.gz vyatta-cfg-quagga-2c24b7ff7156bf2fbf6c67e30c0407d5a71c4449.zip |
install: fix warning message when package is updated
vyatta-cfg-system package installation caused warning:
update-rc.d: using dependency based boot sequencing
update-rc.d: warning: vyatta-config-reboot-params start runlevel arguments (2 3 4 5) do not match LSB Default-Start values (S)
update-rc.d: warning: vyatta-config-reboot-params stop runlevel arguments (0 1 6) do not match LSB Default-Stop values (none)
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index cc412632..2595aec1 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -217,7 +217,7 @@ do done # add vyatta-config-reboot-params to start at boot up -update-rc.d vyatta-config-reboot-params defaults +update-rc.d vyatta-config-reboot-params start 20 S # Local Variables: # mode: shell-script |