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