Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions installers/gentoo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
wget -q https://raw.github.com/marcuswhybrow/minecraft-server-manager/master/installers/common.sh -O /tmp/msmcommon.sh
source /tmp/msmcommon.sh && rm -f /tmp/msmcommon.sh

function update_system_packages() {
install_log "Updating sources"
sudo emerge --sync || install_error "Couldn't update packages"
}

function install_dependencies() {
install_log "Installing required packages"
sudo emerge --noreplace screen rsync zip || install_error "Couldn't install dependencies"
}

function reload_cron() {
install_log "Reloading cron service(s)"
for cron in `ls /etc/init.d/*cron*`; do
sudo $cron stop
sudo $cron start
done
}

function enable_init() {
install_log "Enabling automatic startup and shutdown"
sudo rc-update add msm
}

install_msm