rename err to bash-bear
[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
9 myi3status
10 mailbindwatchdog
11 check-mailq
12 unsaved-buffers.el
13 mail-backup-clean
14 iptables-exim
15 ip6tables-exim
16 exim-nn-iptables
17 check-crypttab
18 /a/bin/cedit/cedit
19 btrbk-spread-wrap
20 prof
21 prof-remote
22 prof-backup
23 prof-tail
24 prof-notify
25 )
26
27 for f in /b/log-quiet/*; do
28 if [[ -x $f && ! -d $f && ! -L $f && $f != setup ]]; then
29 my_bin_files+=("$f")
30 fi
31 done
32
33
34 my_service_scripts=(
35 epanic-clean
36 system-status
37 btrfsmaint
38 mailtest-check
39 dynamic-ip-update
40 )
41
42 # note: turn this into an array if we ever add more
43 my_lib_files=/a/bin/bash-bear-trap/bash-bear
44
45 all_my_scripts=("${my_service_scripts[@]}" "${my_bin_files[@]}" $my_lib_files)