Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormboelen <michael@cisofy.com>2016-04-27 17:14:22 +0300
committermboelen <michael@cisofy.com>2016-04-27 17:14:22 +0300
commit7c4099a7da2f8d44a1612765c1afaf901902d514 (patch)
tree4cea6fdf20f554a79cab81755cacb18182a1613a /include/functions
parentf4691536eebfa1b91b2367f24b0758937c814da6 (diff)
Call WaitForKeypress from wait_for_keypress, and report this old function when called to developers
Diffstat (limited to 'include/functions')
-rw-r--r--include/functions18
1 files changed, 7 insertions, 11 deletions
diff --git a/include/functions b/include/functions
index c0a56b9a..83346f50 100644
--- a/include/functions
+++ b/include/functions
@@ -2261,23 +2261,19 @@
exit 0
}
- # Wait for [ENTER] or manually break
- wait_for_keypress()
- {
- if [ ! ${QUICKMODE} -eq 1 ]; then
- echo ""; echo "[ Press [ENTER] to continue, or [CTRL]+C to stop ]"
- read void
- fi
- }
+ # Wait for [ENTER] or manually break (deprecated, will be removed later)
+ wait_for_keypress() {
+ if IsDeveloperMode; then Debug "Warning: old wait_for_keypress function is used"; fi
+ WaitForKeypress
+ }
# Wait for [ENTER] or manually break
- WaitForKeypress()
- {
+ WaitForKeypress() {
if [ ! ${QUICKMODE} -eq 1 ]; then
echo ""; echo "[ Press [ENTER] to continue, or [CTRL]+C to stop ]"
read void
fi
- }
+ }
#================================================================================