mirror of
https://git.proxmox.com/git/mirror_smartmontools-debian
synced 2025-05-02 19:59:07 +00:00
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
tmp=$(tempfile)
|
|
cat >$tmp
|
|
|
|
run-parts --report --lsbsysinit --arg=$tmp --arg="$1" \
|
|
--arg="$2" --arg="$3" -- /etc/smartmontools/run.d
|
|
|
|
rm -f $tmp
|
|
|