From 46f136fbc325550f002cb6232a152e0adc7bdffc Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sat, 11 Jun 2016 14:39:35 +0200 Subject: [PATCH] removing steambox setup --- main.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/main.py b/main.py index 5bfd2bf..6793c56 100644 --- a/main.py +++ b/main.py @@ -285,17 +285,6 @@ def install_package_file(self, package_file): return 0 - def _configure_steambox(self): - - steambox_user_file = self._root + "/etc/sabayon/steambox-user" - steambox_user_dir = os.path.dirname(steambox_user_file) - if not os.path.isdir(steambox_user_dir): - os.makedirs(steambox_user_dir, 0755) - - steambox_user = self._anaconda.users.otherUsers[LIVE_USER]['username'] - with open(steambox_user_file, "w") as f: - f.write(steambox_user) - def _configure_skel(self): # copy Rigo on the desktop @@ -506,9 +495,6 @@ def setup_users(self): # configure .desktop files on Desktop self._configure_skel() - # configure steambox user - self._configure_steambox() - # remove live user and its home dir pid = os.fork() if pid > 0: