02ffa3c31c34dafc914a57941964c8f46b39a3ee
[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 )
21
22 for f in /b/log-quiet/*; do
23 if [[ -x $f && ! -d $f && ! -L $f && $f != setup ]]; then
24 my_bin_files+=("$f")
25 fi
26 done
27
28
29 my_service_scripts=(
30 epanic-clean
31 system-status
32 btrfsmaint
33 mailtest-check
34 dynamic-ip-update
35 )
36
37 # note: turn this into an array if we ever add more
38 my_lib_files=/a/bin/errhandle/err
39
40 all_my_scripts=("${my_service_scripts[@]}" "${my_bin_files[@]}" $my_lib_files)