Parent Directory
|
Revision Log
corrected pedantic lintian findings, removed old deprecated scripts
| 1 | #!/bin/bash |
| 2 | set -e |
| 3 | |
| 4 | . /usr/share/debconf/confmodule |
| 5 | |
| 6 | export PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin |
| 7 | |
| 8 | case "$1" in |
| 9 | configure|reconfigure) |
| 10 | db_input high chef/chef_server_url || true |
| 11 | db_go |
| 12 | ;; |
| 13 | *) |
| 14 | echo "config called with unknown argument \`$1'" >&2 |
| 15 | exit 1 |
| 16 | ;; |
| 17 | esac |
| 18 | |
| 19 | db_stop |
| 20 | |
| 21 | exit 0 |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |