Unix pattern matching will be used when command: fuel rel --sync-deployment-tasks will be executed By default *tasks.yaml pattern will be used It can be overwritten by --fp '*another*'. So in result command should be: fuel rel --sync-deployment-tasks --fp '*another*' implements blueprint granular-deployment-based-on-tasks Change-Id: I9897b0e1c96ab9d0d8fb48010c79561f40e275ac
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
# Copyright 2014 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from fnmatch import fnmatch
|
|
import os
|
|
|
|
|
|
def iterfiles(dir_path, file_pattern):
|
|
"""Returns generator where each item is a path to file, that satisfies
|
|
file_patterns condtion
|
|
|
|
:param dir_path: path to directory, e.g /etc/puppet/
|
|
:param file_pattern: unix filepattern to match files
|
|
"""
|
|
for root, dirs, file_names in os.walk(dir_path):
|
|
for file_name in file_names:
|
|
if fnmatch(file_name, file_pattern):
|
|
yield os.path.join(root, file_name)
|