osquery-1/tools/provision/fedora.sh

27 lines
576 B
Bash
Raw Normal View History

2015-08-19 04:50:30 +00:00
#!/usr/bin/env bash
# Copyright (c) 2014-present, Facebook, Inc.
2015-08-19 04:50:30 +00:00
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
2016-07-31 18:32:31 +00:00
function distro_main() {
do_sudo dnf update -y
2015-08-19 04:50:30 +00:00
package wget
2016-07-31 18:32:31 +00:00
package git
2015-08-19 04:50:30 +00:00
package unzip
2016-07-31 18:32:31 +00:00
package gawk
2015-08-19 04:50:30 +00:00
package xz
package ruby
2016-07-31 18:32:31 +00:00
package ruby-irb
2015-08-19 04:50:30 +00:00
package gcc
2016-07-31 18:32:31 +00:00
package bzip2
package gettext-devel
2016-07-31 18:32:31 +00:00
package rpm-devel
package rpm-build
2015-08-19 04:50:30 +00:00
}