diff options
| author | Richard Purdie <richard@openedhand.com> | 2007-09-02 14:00:52 +0000 | 
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2007-09-02 14:00:52 +0000 | 
| commit | 1cf731b1e3bb125449c2ef4e1194b6bf69e7b667 (patch) | |
| tree | fc305d382d225d9a033fb1678bdc4720f38484e4 /meta/packages/initscripts/initscripts-1.0/functions | |
| parent | 3cb6c768efa690f25035351fb7975bca59f94ee2 (diff) | |
| download | poky-1cf731b1e3bb125449c2ef4e1194b6bf69e7b667.tar.gz | |
initscripts: Sync with OE, primarily for better /etc/timestamp handling
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2650 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/initscripts/initscripts-1.0/functions')
| -rw-r--r-- | meta/packages/initscripts/initscripts-1.0/functions | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/meta/packages/initscripts/initscripts-1.0/functions b/meta/packages/initscripts/initscripts-1.0/functions new file mode 100644 index 0000000000..358fc6edb3 --- /dev/null +++ b/meta/packages/initscripts/initscripts-1.0/functions | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | # -*-Shell-script-*- | ||
| 2 | # | ||
| 3 | # functions This file contains functions to be used by most or all | ||
| 4 | # shell scripts in the /etc/init.d directory. | ||
| 5 | # | ||
| 6 | |||
| 7 | cpuinfo_id() { # return the Hardware module ID | ||
| 8 | awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo | ||
| 9 | } | ||
| 10 | |||
| 11 | killproc() { # kill the named process(es) | ||
| 12 | pid=`/bin/ps -e x | | ||
| 13 | /bin/grep $1 | | ||
| 14 | /bin/grep -v grep | | ||
| 15 | /bin/sed -e 's/^ *//' -e 's/ .*//'` | ||
| 16 | [ "$pid" != "" ] && kill $pid | ||
| 17 | } | ||
