pip3 install pipenv
pipenv shell
| #!/bin/sh | |
| # To configure, add line with DROPBOX_USERS="user1 user2" to /etc/sysconfig/dropbox | |
| # Probably should use a dropbox group in /etc/groups instead. | |
| # Source function library. | |
| . /etc/rc.d/init.d/functions | |
| prog=dropboxd | |
| lockfile=${LOCKFILE-/var/lock/subsys/$prog} |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: dropbox | |
| # Required-Start: $local_fs $remote_fs $network $syslog $named | |
| # Required-Stop: $local_fs $remote_fs $network $syslog $named | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # X-Interactive: false | |
| # Short-Description: dropbox service | |
| ### END INIT INFO |
| #! /bin/sh | |
| # | |
| # Downloaded from: | |
| # http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/supervisor/trusty/view/head:/debian/supervisor.init | |
| # | |
| # skeleton example file to build /etc/init.d/ scripts. | |
| # This file should be used to construct scripts for /etc/init.d. | |
| # | |
| # Written by Miquel van Smoorenburg <miquels@cistron.nl>. | |
| # Modified for Debian |
| #!/bin/bash | |
| # Following the guide found at this page | |
| # http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html | |
| echo "\r\nUpdating system ...\r\n" | |
| sudo apt-get update | |
| # Create folder to place selenium in |
| CREATE TABLE IF NOT EXISTS `users` ( | |
| `id` int(10) NOT NULL AUTO_INCREMENT, | |
| `username` varchar(50) DEFAULT NULL, | |
| `password` varchar(50) DEFAULT NULL, | |
| `role` varchar(20) DEFAULT NULL, | |
| `created` datetime DEFAULT NULL, | |
| `modified` datetime DEFAULT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; |