File: lsb_log_message

package info (click to toggle)
uruk 20240930-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,232 kB
  • sloc: sh: 1,910; makefile: 155; xml: 51
file content (27 lines) | stat: -rwxr-xr-x 243 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

. /etc/init.d/functions

ACTION=$1
shift

case "$ACTION" in
  success)
  	echo -n $*
	success "$*"
	echo
	;;
  failure)
  	echo -n $*
	failure "$*"
	echo
	;;
  warning)
  	echo -n $*
	warning "$*"
	echo
	;;
  *)
  	;;
esac
exit 0