File: ec2udev-vcpu

package info (click to toggle)
amazon-ec2-utils 1.3%2Bgit20200518-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 216 kB
  • sloc: sh: 207; python: 130; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 554 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the MIT License. See the LICENSE accompanying this file
# for the specific language governing permissions and limitations under
# the License.

if [ "$#" -ne 1 ] ; then
  echo "$0 <device path>" >&2
  exit 1
fi

grep -qE '\bmaxcpus=' /proc/cmdline
if [ "$?" -ne 1 ]; then
  echo "maxcpus set, not bringing up additional cpus" >&2
  exit 2
fi

if [ ! -e /sys$1/online ]; then
  echo "/sys$1/online does not exist" >&2
  exit 3
fi

echo 1 > /sys$1/online