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