sudo adduser \\
--system \\
--shell /bin/bash \\
--gecos 'user for running node.js projects' \\
--group \\
--disabled-password \\
--home /home/node \\
node
<form action="login.php" method="post" >
login:<input type="text" name="login" value="">
password:<input type="text" name="password" value="">
<input type="submit" name="dologin" value="enter">
</form>
if( isset( $_POST[ 'dologin' ] ) ) {
// выполняем авторизацию
}
#!/bin/bash
branch=`git rev-parse --symbolic --abbrev-ref $1`
echo "Pushed to branch '$branch'"
exec git update-server-info