comparison python/install_config.py @ 594:98ccb704e241

STUB: python/install_config.py
author Jeff Hammel <k0scist@gmail.com>
date Sat, 25 Jan 2014 18:30:24 -0800
parents dbdc68d85986
children 4b79ee6c8539
comparison
equal deleted inserted replaced
593:dbdc68d85986 594:98ccb704e241
123 class DebianPackages(Step): 123 class DebianPackages(Step):
124 """ubuntu packages to install""" 124 """ubuntu packages to install"""
125 # TODO: actually install packages 125 # TODO: actually install packages
126 126
127 PACKAGES=["antiword", 127 PACKAGES=["antiword",
128 "arandr",
129 "curl",
130 "emacs",
128 "fluxbox", 131 "fluxbox",
132 "git",
133 "gkrellm",
134 "graphviz",
135 "graphviz-dev",
136 "irssi",
129 "mercurial", 137 "mercurial",
138 "python-dev",
139 "python-lxml",
130 "libxml2" 140 "libxml2"
131 "libxml2-dev", 141 "libxml2-dev",
132 "libxslt1-dev", 142 "libxslt1-dev",
133 "unison", 143 "unison",
134 "xclip", 144 "xclip",
135 "graphviz", 145 ]
136 "python-dev", 146
137 "python-lxml",
138 "curl",
139 "arandr",
140 "git",
141 "emacs",
142 "irssi"]
143 def __call__(self): 147 def __call__(self):
148 # TODO: actually install this shit
144 print "Ensure the following packages are installed:" 149 print "Ensure the following packages are installed:"
145 print "sudo apt-get install %s" % ' '.join(self.PACKAGES) 150 print "sudo apt-get install %s" % ' '.join(self.PACKAGES)
146 151
147 152
148 ### legacy -v- 153 ### legacy -v-