~ubuntu-branches/ubuntu/quantal/cloud-init/quantal

« back to all changes in this revision

Viewing changes to cloudinit/config/cc_byobu.py

  • Committer: Package Import Robot
  • Author(s): Scott Moser
  • Date: 2012-09-30 14:29:04 UTC
  • Revision ID: package-import@ubuntu.com-20120930142904-nq8fkve62i0xytqz
* add CloudStack to DataSources listed by dpkg-reconfigure (LP: #1002155)
* New upstream snapshot.
  * 0440 permissions on /etc/sudoers.d files rather than 0644
  * get host ssh keys to the console (LP: #1055688)
  * MAAS DataSource adjust timestamp in oauth header to one based on the
    timestamp in the response of a 403.  This accounts for a bad local
    clock. (LP: #978127)
  * re-start the salt daemon rather than start to ensure config changes
    are taken.
  * allow for python unicode types in yaml that is loaded.
  * cleanup in how config modules get at users and groups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#    You should have received a copy of the GNU General Public License
19
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
 
 
21
# Ensure this is aliased to a name not 'distros'
 
22
# since the module attribute 'distros'
 
23
# is a list of distros that are supported, not a sub-module
 
24
from cloudinit import distros as ds
 
25
 
21
26
from cloudinit import util
22
27
 
23
28
distros = ['ubuntu', 'debian']
24
29
 
25
30
 
26
 
def handle(name, cfg, _cloud, log, args):
 
31
def handle(name, cfg, cloud, log, args):
27
32
    if len(args) != 0:
28
33
        value = args[0]
29
34
    else:
56
61
 
57
62
    shcmd = ""
58
63
    if mod_user:
59
 
        user = util.get_cfg_option_str(cfg, "user", "ubuntu")
60
 
        shcmd += " sudo -Hu \"%s\" byobu-launcher-%s" % (user, bl_inst)
61
 
        shcmd += " || X=$(($X+1)); "
 
64
        (users, _groups) = ds.normalize_users_groups(cfg, cloud.distro)
 
65
        (user, _user_config) = ds.extract_default(users)
 
66
        if not user:
 
67
            log.warn(("No default byobu user provided, "
 
68
                      "can not launch %s for the default user"), bl_inst)
 
69
        else:
 
70
            shcmd += " sudo -Hu \"%s\" byobu-launcher-%s" % (user, bl_inst)
 
71
            shcmd += " || X=$(($X+1)); "
62
72
    if mod_sys:
63
73
        shcmd += "echo \"%s\" | debconf-set-selections" % dc_val
64
74
        shcmd += " && dpkg-reconfigure byobu --frontend=noninteractive"
65
75
        shcmd += " || X=$(($X+1)); "
66
76
 
67
 
    cmd = ["/bin/sh", "-c", "%s %s %s" % ("X=0;", shcmd, "exit $X")]
68
 
 
69
 
    log.debug("Setting byobu to %s", value)
70
 
 
71
 
    util.subp(cmd, capture=False)
 
77
    if len(shcmd):
 
78
        cmd = ["/bin/sh", "-c", "%s %s %s" % ("X=0;", shcmd, "exit $X")]
 
79
        log.debug("Setting byobu to %s", value)
 
80
        util.subp(cmd, capture=False)