summaryrefslogtreecommitdiff
path: root/examples/systemtap/generate-winbindd.stp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/systemtap/generate-winbindd.stp.sh')
-rwxr-xr-xexamples/systemtap/generate-winbindd.stp.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/systemtap/generate-winbindd.stp.sh b/examples/systemtap/generate-winbindd.stp.sh
index 002fb5bf7dc..d38bf2cab00 100755
--- a/examples/systemtap/generate-winbindd.stp.sh
+++ b/examples/systemtap/generate-winbindd.stp.sh
@@ -288,20 +288,20 @@ probe end {
}
}'
-cat <<EOF > $outfile
+cat <<EOF >$outfile
$header
EOF
-printf "$child_funcs\n" | while read func ; do
- printf "$domchild_req_template\n" | sed -e s/XXX/$func/g >> $outfile
+printf "$child_funcs\n" | while read func; do
+ printf "$domchild_req_template\n" | sed -e s/XXX/$func/g >>$outfile
done
-printf "$backend_funcs\n" | while read func ; do
- printf "$backend_req_template\n" | sed -e "s|XXX|$func|g" >> $outfile
+printf "$backend_funcs\n" | while read func; do
+ printf "$backend_req_template\n" | sed -e "s|XXX|$func|g" >>$outfile
done
-printf "$async_funcs\n" | while read func ; do
- printf "$async_req_template\n" | sed -e s/XXX/$func/g >> $outfile
+printf "$async_funcs\n" | while read func; do
+ printf "$async_req_template\n" | sed -e s/XXX/$func/g >>$outfile
done
cat <<EOF >>$outfile