#!/usr/bin/env bash
set -e
#check to make sure this is a 64-bit machine
getconf LONG_BIT | grep 64 > /dev/null || ( echo "Git Fusion requires a 64-bit machine. Exiting." && exit 1)
sudo rpm --import http://package.perforce.com/perforce.pubkey
#Update sources list with the Perforce Package repo.
sudo echo "[perforce]
name=Perforce
baseurl=http://package.perforce.com/yum/rhel/7/x86_64
enabled=1
gpgcheck=1" >> /etc/yum.repos.d/perforce.repo
sudo yum -y update
sudo yum -y install helix-cli python-pip python-devel
sudo pip install p4python
# |
Change |
User |
Description |
Committed |
|
#3
|
25621 |
Jen Bottom |
Integrating sone fixes from dev to main |
|
|
#2
|
23383 |
jenbottom |
Installing the python-devel package as well |
|
|
#1
|
23213 |
Jen Bottom |
Adding setup script and Vagrantfile for a Fedora18 machine |
|
|