Revision fcfef550

b/ci/utils.py
311 311
        echo -e "\n\n{0}" >> /etc/apt/sources.list
312 312
        # Synnefo repo's key
313 313
        curl https://dev.grnet.gr/files/apt-grnetdev.pub | apt-key add -
314

  
314 315
        # X2GO Key
315 316
        apt-key adv --recv-keys --keyserver keys.gnupg.net E1F958385BFE2B6E
316 317
        apt-get install x2go-keyring --yes --force-yes
317 318
        apt-get update
318 319
        apt-get install x2goserver x2goserver-xsession \
319 320
                iceweasel --yes --force-yes
321

  
322
        # xterm published application
323
        echo '[Desktop Entry]' > /usr/share/applications/xterm.desktop
324
        echo 'Name=XTerm' >> /usr/share/applications/xterm.desktop
325
        echo 'Comment=standard terminal emulator for the X window system' >> \
326
            /usr/share/applications/xterm.desktop
327
        echo 'Exec=xterm' >> /usr/share/applications/xterm.desktop
328
        echo 'Terminal=false' >> /usr/share/applications/xterm.desktop
329
        echo 'Type=Application' >> /usr/share/applications/xterm.desktop
330
        echo 'Encoding=UTF-8' >> /usr/share/applications/xterm.desktop
331
        echo 'Icon=xterm-color_48x48' >> /usr/share/applications/xterm.desktop
332
        echo 'Categories=System;TerminalEmulator;' >> \
333
                /usr/share/applications/xterm.desktop
320 334
        """.format(self.config.get('Global', 'apt_repo'))
321 335
        _run(cmd, False)
322 336

  

Also available in: Unified diff