• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..22-Jun-202122

.gitignoreH A D22-Jun-202133

all-debug.shH A D22-Jun-2021504

all-syslog.shH A D22-Jun-20212 KiB

data-notify.shH A D22-Jun-20211.3 KiB

generic-notify.shH A D22-Jun-20211.9 KiB

history_event-zfs-list-cacher.sh.inH A D22-Jun-20212.5 KiB

Makefile.amH A D22-Jun-20211.4 KiB

pool_import-led.shH A D22-Jun-20214.4 KiB

READMEH A D22-Jun-20211 KiB

resilver_finish-notify.shH A D22-Jun-20211.6 KiB

resilver_finish-start-scrub.shH A D22-Jun-2021626

scrub_finish-notify.shH A D22-Jun-20211.6 KiB

statechange-led.shH A D22-Jun-20214.4 KiB

statechange-notify.shH A D22-Jun-20212.4 KiB

trim_finish-notify.shH A D22-Jun-2021942

vdev_attach-led.shH A D22-Jun-20214.4 KiB

vdev_clear-led.shH A D22-Jun-20214.4 KiB

zed-functions.shH A D22-Jun-202113.9 KiB

zed.rcH A D22-Jun-20213.5 KiB

README

1Shell scripts are the recommended choice for ZEDLETs that mostly call
2other utilities and do relatively little data manipulation.
3
4Shell scripts MUST work on both bash and dash.
5
6Shell scripts MUST run cleanly through ShellCheck:
7  http://www.shellcheck.net/
8
9General functions reside in "zed-functions.sh".  Use them where applicable.
10
11Additional references that may be of use:
12
13  Google Shell Style Guide
14  https://github.com/google/styleguide/blob/gh-pages/shell.xml
15
16  Dash as /bin/sh
17  https://wiki.ubuntu.com/DashAsBinSh
18
19  Common shell script mistakes
20  http://www.pixelbeat.org/programming/shell_script_mistakes.html
21
22  Filenames and Pathnames in Shell: How to do it Correctly
23  http://www.dwheeler.com/essays/filenames-in-shell.html
24
25  Autoconf: Portable Shell Programming
26  https://www.gnu.org/software/autoconf/manual/autoconf.html#Portable-Shell
27
28Please BE CONSISTENT with the existing style, check for errors,
29minimize dependencies where possible, try to be portable,
30and comment anything non-obvious.  Festina lente.
31