diff options
author | Georg Pfuetzenreuter | 2023-01-21 20:13:47 +0100 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-01-21 20:13:47 +0100 |
commit | 03da60604e755a95c2aaba268725856b3bab0835 (patch) | |
tree | bc59d8b8124d78a8c195038bc605ed8f0f72af2c /bin | |
parent | 0d9230d6bb979a76ff1f5be750bb8d01bea863b1 (diff) | |
download | salt-03da60604e755a95c2aaba268725856b3bab0835.tar.gz salt-03da60604e755a95c2aaba268725856b3bab0835.tar.bz2 salt-03da60604e755a95c2aaba268725856b3bab0835.zip |
roles.py: remove exclusions
These were only relevant during testing. Leaving the empty list in case
exclusions need to be added in the future.
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/roles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/roles.py b/bin/roles.py index e4a0587..ef3c27c 100755 --- a/bin/roles.py +++ b/bin/roles.py @@ -3,7 +3,7 @@ import os roles = [] -excluded = ['common-suse', 'minion'] +excluded = [] def get(): for root in ['pillar', 'salt']: |