forked from Lainports/opnsense-ports
6 lines
131 B
Bash
6 lines
131 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
echo "Creating ssm-user for SSM Agent Sessions"
|
|
pw useradd ssm-user -G wheel -m
|
|
fi
|