Merge commit 'release-4-0-0alpha15' into master4-tmp
[nivanova/samba-autobuild/.git] / source4 / scripting / python / samba / common.py
1 #!/usr/bin/env python
2 #
3 # Samba common functions
4 #
5 # Copyright (C) Matthieu Patou <mat@matws.net>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 def confirm(msg, forced = False):
22     """confirm an action with the user
23         :param msg: A string to print to the user
24         :param forced: Are the answer forced
25     """
26     if forced:
27         print("%s [YES]" % msg)
28         return True
29
30     v = raw_input(msg + ' [y/N] ')
31     return v.upper() in ['Y', 'YES']
32
33