309d5bd3820be73079689c087277b4d7a2b77622
[distro-setup] / script-files
1 #!/bin/bash
2 ### FOR SOURCING ###
3
4 my_bin_files=(
5 switch-mail-host
6 switch-host2
7 btrbk-run mount-latest-subvol
8 check-subvol-stale myi3status
9 mailbindwatchdog
10 check-mailq
11 unsaved-buffers.el
12 mail-backup-clean
13 iptables-exim
14 ip6tables-exim
15 exim-nn-iptables
16 check-crypttab
17 /a/bin/cedit/cedit
18 )
19
20 for f in /b/log-quiet/*; do
21 if [[ -x $f && ! -d $f && ! -L $f && $f != setup ]]; then
22 my_bin_files+=("$f")
23 fi
24 done
25
26
27 my_service_scripts=(
28 epanic-clean
29 system-status
30 btrfsmaint
31 mailtest-check
32 dynamic-ip-update
33 )
34
35 # note: turn this into an array if we ever add more
36 my_lib_files=/a/bin/errhandle/err
37
38 all_my_scripts=("${my_service_scripts[@]}" "${my_bin_files[@]}" $my_lib_files)