255a08ff8f54a3434817b07315568107eeaf28f1
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / src / etc / init.d / logo
1 #!/bin/sh
2 # vi: ts=4 noexpandtab
3 # load modules
4
5 LOGO=/usr/share/cirros/logo
6
7 case "$1" in
8         start)
9                 [ ! -f "$LOGO" ] || cat "$LOGO"
10                 ;;
11         stop|restart|reload) : ;;
12   *)
13         echo $"Usage: $0 {start}"
14         exit 1
15 esac
16
17 exit $?