| Current Path : /etc/aide/aide.settings.d/ |
| Current File : //etc/aide/aide.settings.d/10_aide_sourceslist |
#!/bin/sh
SOURCESLIST=""
if [ -e "/etc/apt/sources.list" ]; then
SOURCESLIST="/etc/apt/sources.list"
fi
for file in /etc/apt/sources.list.d/*; do
if [ -e "$file" ]; then
SOURCESLIST="$SOURCESLIST $file"
fi
done