Skip to content

Commit

Permalink
removing steambox setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler authored Jun 11, 2016
1 parent 06ee649 commit 46f136f
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 46f136f

Please sign in to comment.