Changeset 09f292b
- Timestamp:
- Jul 14, 2012 7:29:46 PM (12 years ago)
- Branches:
- compt_changes, master
- Children:
- 76c43e4
- Parents:
- 7e55a14
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedkit/prep_gateway.pl
r7e55a14 r09f292b 44 44 if $ssh_pubkey; 45 45 # Install bridging software if not present 46 system('/usr/bin/yum -y install bridge-utils'); 46 if ( -x '/usr/bin/yum' ) { 47 system('/usr/bin/yum -y install bridge-utils'); 48 } 49 elsif (-x '/usr/bin/apt-get') { 50 system('/usr/bin/apt-get -y install bridge-utils'); 51 } 52 else { 53 print "Cannot install bridge utils, hope they're here.\n" 54 } 47 55 } 48 56 elsif ($uname =~ /FreeBSD/ ){
Note: See TracChangeset
for help on using the changeset viewer.