![Albert Hopkins](/assets/img/avatar_default.png)
Instead of having everything in the root directory, split them in seperate directories (appliances, scripts, & configs). This makes things a little tidier. Also added a now Makefile target, appliance-list, that prints a list of the available appliances. The split directory change made this easier.
16 lines
272 B
Makefile
16 lines
272 B
Makefile
preinstall:
|
|
|
|
|
|
postinstall:
|
|
$(inroot) eselect python set python2.7
|
|
$(inroot) python-updater -- --usepkg=n
|
|
|
|
# we want sshd running
|
|
chroot "$(CHROOT)" rc-update add sshd default
|
|
|
|
# and root account enabled, so we can ssh in
|
|
chroot "$(CHROOT)" chage -E -1 root
|
|
|
|
clean:
|
|
|