Fix invoke() example

This commit is contained in:
Saverio Miroddi 2021-04-30 19:45:50 +02:00
parent cf2f926720
commit 62facba704

View File

@ -157,17 +157,17 @@ c_udevadm_settle_timeout=10 # seconds
# #
# $ function install_jail_zfs_packages { :; } # $ function install_jail_zfs_packages { :; }
# $ function install_jail_zfs_packages_Debian { :; } # $ function install_jail_zfs_packages_Debian { :; }
# $ distro_dependent_invoke "install_jail_zfs_packages" # $ invoke "install_jail_zfs_packages"
# #
# If the distribution is `Debian`, the second will be invoked, otherwise, the first. # If the distribution is `Debian`, the second will be invoked, otherwise, the first.
# #
# $ function update_zed_cache_Ubuntu { :; } # $ function update_zed_cache_Ubuntu { :; }
# $ distro_dependent_invoke "update_zed_cache" --optional # $ invoke "update_zed_cache" --optional
# #
# If the distribution is `Debian`, nothing will happen. # If the distribution is `Debian`, nothing will happen.
# #
# $ function update_zed_cache_Ubuntu { :; } # $ function update_zed_cache_Ubuntu { :; }
# $ distro_dependent_invoke "update_zed_cache" # $ invoke "update_zed_cache"
# #
# If the distribution is `Debian`, an error will be raised. # If the distribution is `Debian`, an error will be raised.
# #