diff --git a/www/docs/tips.md b/www/docs/tips.md new file mode 100644 index 00000000..a32d07e9 --- /dev/null +++ b/www/docs/tips.md @@ -0,0 +1,117 @@ +# Tips, Hints, and useful information + +## General maintainability of your packages +* Try hard to make all files work on all platforms you support. + * Maintaining separate scripts, config, service files, etc for each platform quickly becomes difficult +* Put as much conditional logic in the pre/post install scripts as possible instead of trying to build it into the nfpm.yaml +* *if* you need to know the packaging system I have found it useful to add a `/etc/path-to-cfg/package.env` that contains `_INSTALLED_FROM=apk|deb|rpm` which can be sourced into the pre/post install/remove scripts +* *if/when* you need to ask questions during the installation process, create an `install.sh` || `setup.sh` script that asks those questions and stores the answers as env vars in `/etc/path-to-cfg/package.env` for use by the pre/post install/remove scripts + * If you only need to support deb packages you can use the debconf template/config feature, but since rpm does not support this I would try to unify the way you ask questions. + +## Pre/Post Install/Remove/Upgrade scripts +* [APK Docs](https://wiki.alpinelinux.org/wiki/Creating_an_Alpine_package#install) +* [RPM Docs](https://docs.fedoraproject.org/en-US/packaging-guidelines/Scriptlets/) +* [DEB Docs](https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html) + +### Example Multi platform post-install script +```bash +#!/bin/bash + +# Step 1, decide if we should use systemd or init/upstart +use_systemctl="True" +systemd_version=0 +if ! command -V systemctl >/dev/null 2>&1; then + use_systemctl="False" +else + systemd_version=$(systemctl --version | head -1 | sed 's/systemd //g') +fi + +cleanup() { + # This is where you remove files that were not needed on this platform / system + if [ "${use_systemctl}" = "False" ]; then + rm -f /path/to/.service + else + rm -f /etc/chkconfig/ + rm -f /etc/init.d/ + fi +} + +# Step 2, check if this is a clean install or an upgrade +# [ -z "$1" ] == alpine linux - Note alpine uses a separate post-upgrade script +# [ "$1" = "1" ] == RPM clean install +# { [ "$1" = "configure" ] && [ -z "$2" ] ;} == deb clean install +if [ -z "$1" ] || [ "$1" = "1" ] || { [ "$1" = "configure" ] && [ -z "$2" ] ;}; then + printf "\033[32m Post Install of an clean install\033[0m\n" + # Step 3 (clean install), enable the service in the proper way for this platform + if [ "${use_systemctl}" = "False" ]; then + if command -V chkconfig >/dev/null 2>&1; then + chkconfig --add + fi + + service restart ||: + else + # rhel/centos7 cannot use ExecStartPre=+ to specify the pre start should be run as root + # even if you want your service to run as non root. + if [ "${systemd_version}" -lt 231 ]; then + printf "\033[31m systemd version %s is less then 231, fixing the service file \033[0m\n" "${systemd_version}" + sed -i "s/=+/=/g" /path/to/.service + fi + printf "\033[32m Reload the service unit from disk\033[0m\n" + systemctl daemon-reload ||: + printf "\033[32m Unmask the service\033[0m\n" + systemctl unmask ||: + printf "\033[32m Set the preset flag for the service unit\033[0m\n" + systemctl preset ||: + printf "\033[32m Set the enabled flag for the service unit\033[0m\n" + systemctl enable ||: + systemctl restart ||: + fi +else + printf "\033[32m Post Install of an upgrade\033[0m\n" + # Step 3(upgrade), do what you need + ... +fi + +# Step 4, clean up unused files, yes you get a warning when you remove the package, but that is ok. +cleanup +``` +### Example Multi platform (RPM & Deb) post-remove script +```bash +#!/bin/bash + +action="$1" +if [ -z "$1" ]; then + # Alpine linux does not pass args, so set what you want the post-remove to be + # Also it uses a separate pre/post-upgrade script + action=purge +fi + +case "$action" in + "0", "remove") + printf "\033[32m Post Remove of a normal remove\033[0m\n" + ;; + "1", "upgrade") + printf "\033[32m Post Remove of an upgrade\033[0m\n" + ;; + "purge") + printf "\033[32m Post Remove purge, deb only\033[0m\n" + ;; +esac +``` + +### Deb & RPM +* `postremove` runs **AFTER** `postinstall` when you are upgrading a package. + * So you need to be careful if you are deleting files in `postremove` + +## Systemd and upstart/init +### upstart / init +* try to just say no to supporting this, but if you must make sure you have a single script that works on all platforms you need to support. + * as the `post-install` script above does. + +### Systemd +* The docs you find for systemd are generally for the latest and greatest version, and it can be hard to find docs for older versions. + * In the above `post-install` script you see I am doing a systemd version check to correct the `ExecStartPre=+...` and `ExecStop=+...` lines +* You should always use [Table 2. Automatic directory creation and environment variables](https://www.freedesktop.org/software/systemd/man/systemd.exec.html#id-1.14.4.3.6.2) + * With the note that only `RuntimeDirectory` is used in systemd < 231 +* `/bin/bash -c "$(which ...) ...` is a great way to make your single service file work on all platforms since rhel and debian based systems have standard executables in differing locations and complain about `executable path is not absolute` + * eg `/bin/bash -c '$(which mkdir) -p /var/log/your-service'` \ No newline at end of file diff --git a/www/mkdocs.yml b/www/mkdocs.yml index 6fef7e96..dc9ec56d 100644 --- a/www/mkdocs.yml +++ b/www/mkdocs.yml @@ -39,6 +39,7 @@ nav: - install.md - usage.md - configuration.md +- tips.md - contributing.md - sponsors.md